Reference

Video Thumbnail Cache

A video thumbnail cache is the set of small preview frames a gallery or photos app generates and stores so a video library scrolls instantly instead of decoding each clip on demand. The thumbnails are derived, so deleting them only forces regeneration, not data loss.

Photos & videoGeneral

Video Thumbnail Cache

Also known as: video thumbnails cache, gallery video cache, video thumbnail cache

A video thumbnail cache is the set of small preview frames a gallery or photos app generates and stores so a video library scrolls instantly instead of decoding each clip on demand. The thumbnails are derived, so deleting them only forces regeneration, not data loss.

  • Thumbnails are derived from source videos, so clearing the cache causes regeneration, not data loss.
  • On Android these live in MediaStore thumbnail tables plus per-app getCacheDir/getExternalCacheDir folders.
  • Often reported as app cache or system data rather than as visible media files.

What it is and why apps keep one

Decoding the first frame of every video each time you open a gallery would be slow and battery-hungry, so apps extract a representative frame (often a key frame near the start), scale it down to a grid-sized image, and save it. That saved image is the video thumbnail, and the collection of them is the thumbnail cache.

On Android, system-level previews live under the MediaStore thumbnail tables and per-app caches in directories returned by getCacheDir() or getExternalCacheDir(). On iOS, the Photos framework (PHAsset / PHImageManager) maintains its own managed caches inside the Photos library, and third-party players store previews in NSCachesDirectory. In both cases the data is regenerated from the source video whenever it is missing.

Why it grows and how it gets cleared

Each video can produce multiple cached previews at different resolutions (list view, full-screen scrubber, share sheet), and scrubbing through a long clip can cache a strip of frames along the timeline. Across a large camera roll this adds up, and the cache is often reported under app cache or system data rather than as media you can see.

Because every thumbnail is derived from a video you still have, clearing it is safe: the app simply rebuilds previews the next time you browse. Cleaning it is exactly the kind of low-risk reclaim a storage cleaner targets when it clears app cache and stale thumbnail data, freeing space without touching your actual videos.

Related terms

Keep reading the reference.

Act on it

Guides and tools for this topic.