Grab thumbnail from video

Capture a still frame from any video and save it as JPEG or PNG. Scrub to the perfect moment.

Free forever
No file uploads
No watermarks
Works offline

What this tool does

Use the interactive scrubber to navigate frame-by-frame through any video and capture the exact still image you need — whether that's a YouTube thumbnail, a social media preview, a poster image, or a reference screenshot for a project. The frame is extracted at the video's native resolution with no scaling or cropping applied. Choose JPEG for a small, shareable file or PNG for a pixel-perfect lossless capture; both happen entirely in your browser with no upload required.

Why use it

Video thumbnails do more work than most people realize. On YouTube, the thumbnail is typically the first thing a viewer sees, before the title and before the channel name. Platforms like Udemy and Skillshare use a static cover image to represent every course. Presentations and reports often need a still to stand in for embedded video. And if you want to share a memorable moment from a clip on social media without posting the whole video, a clean image works better than a GIF or a screen recording.

The common workaround is pausing a video and screenshotting your screen. That always introduces compression artifacts from your display, scaling errors from your monitor's DPI, and whatever OS chrome happens to be visible. This tool skips all of that and extracts the frame directly from the video data at its native resolution.

How it works under the hood

Grab Thumbnail does not re-encode any video data. FFmpeg's -vframes 1 flag tells the decoder to seek to the exact timestamp you chose, decompress that single frame from the video's codec (H.264, HEVC, VP9, etc.), and write it to disk as a still image. The seek is placed before the input (-ss before -i) so FFmpeg jumps directly to the target position rather than decoding every preceding frame.

For JPEG, the tool passes -q:v 2, which sits near the top of FFmpeg's quality scale where 2 is near-lossless and 31 is worst. For PNG, no quality argument is passed because PNG is a lossless format by definition. The result is pixel-for-pixel identical to what the video encoder stored in that frame.

Tips and best practices

JPEG is the right choice for most thumbnails: shareable file size, universal compatibility, and no visible quality difference for photographic content. Use PNG only when you need pixel-exact fidelity, for example when capturing a frame that contains text or a logo you plan to enlarge or edit further, where JPEG's block artifacts would be noticeable.

The scrubber steps in 0.01-second increments, but video is stored in discrete frames. A 30fps video has a new frame every 0.033 seconds, so consecutive scrubber positions may show the same underlying frame. Move the slider further until the preview image visibly changes to confirm you are on a different frame.

Browser tool vs alternatives

Screenshot tools and screen recorders capture what your monitor renders: scaled, color-managed, and affected by your OS's display settings. VLC's "Take Snapshot" feature is better but saves to a fixed folder and applies its own compression defaults. Desktop tools like FFmpegGUI or Handbrake can do this but require installation and several steps to navigate their interfaces. Here, you open the page, drop the file, and download the frame.

Read the guide

How to Extract a Thumbnail Image from Any Video

What to do next

Frequently Asked Questions

What's the difference between JPEG and PNG?

JPEG is smaller but slightly lossy. PNG is lossless and supports transparency, but produces larger files. JPEG is best for photos, PNG for graphics with sharp edges or text.

What resolution is the thumbnail?

The exact native resolution of the video frame — no scaling or cropping is applied. A 1920×1080 video produces a 1920×1080 image.

Can I capture multiple frames from the same video?

Yes. After downloading one frame, move the scrubber to a new position and click capture again. You can grab as many frames as you like without re-uploading the video.

What video formats are supported?

The tool accepts any format your browser can decode, which typically includes MP4, MOV, WEBM, AVI, MKV, and FLV. If your browser can play the file, the tool can capture frames from it.

Is there a file-size limit?

The practical limit is around 500 MB, though very large files may be slow to load depending on your device's available memory.

Does it work on mobile?

Yes. The scrubber and format picker work on touch screens. Note that very large video files may be slow to load on devices with limited RAM.

Can I use the captured thumbnail commercially?

Ownership of the captured frame follows the copyright of the original video. If you own or have rights to the source video, you can use the captured frame however you like.

Does the tool require an internet connection after the page loads?

No. Once the page and processing engine have loaded, frame extraction runs entirely on your device. You can disconnect from the internet and it will still work.

Last updated: 2026-09-05