Turbo Digital Tools Logo

Free Online Tool

Generate Video Thumbnails Online (FFmpeg)

Create clean JPG thumbnails at fixed time intervals (1s, 2s, 5s, 10s…) without memorising filters. Download a ZIP and copy the exact FFmpeg commands.

Open Thumbnails Tool → Need to shrink video? Need letterbox or blur pad?

What it does

  • Extracts frames at your chosen interval (e.g., every 1, 2, 5, 10 etc. seconds).
  • Rescales to a tidy web width (480 px).
  • Bundles everything into a single ZIP for easy download.

Tip: Use the results for storyboards, QA, preview galleries, or selecting YouTube thumbnail candidates.

FFmpeg Thumbnail Commands (Copy-ready)

Every 5 seconds (480 px wide)

ffmpeg -i input.mp4 -vf "fps=1/5,scale=480:-1" -q:v 2 thumbs-%04d.jpg
Use -q:v 2 for high JPG quality (lower is better).

Every 1 second

ffmpeg -i input.mp4 -vf "fps=1,scale=480:-1" -q:v 2 thumbs-%04d.jpg

Every 10 seconds

ffmpeg -i input.mp4 -vf "fps=1/10,scale=480:-1" -q:v 2 thumbs-%04d.jpg

Exact frames per minute (e.g., 6 per minute)

ffmpeg -i input.mp4 -vf "fps=6/60,scale=480:-1" -q:v 2 thumbs-%04d.jpg

Advanced: If your source has variable frame rate (VFR) and timing accuracy matters, you can map based on timestamps via select='not(mod(t,5))' instead of fps.

ffmpeg -i input.mp4 -vf "select='not(mod(t,5))',scale=480:-1" -vsync vfr -q:v 2 thumbs-%04d.jpg

Why creators & editors like this

FAQ

Is the thumbnails tool free?

Yes — no sign-up required. Upload, pick intervals, download a ZIP.

Which formats are supported?

Most FFmpeg-decodable formats: MP4, MOV, M4V, MKV, and more.

Can I change the image size/quality?

By default, we scale to a web-friendly width (e.g., 480px). If you’re running the command locally, adjust scale=WIDTH:-1 and -q:v (1–3 high quality, 4–5 good, larger numbers = more compression).

What if I need letterbox or blurred padding?

Use Aspect Tools to Fit/Fill/BlurPad to a target frame (e.g., 1920×1080 or 1080×1920).

Try it now

Open the thumbnails tool, pick intervals (1s/2s/5s/10s), and download a ZIP of JPGs.

Open Thumbnails Tool →

Prefer the command line? Copy any command above and run it locally with FFmpeg installed.