How to extract frames from a video on Mac (stills & thumbnails)
Updated 2026-06-17 · Runs locally — nothing uploaded
Pull still images out of a video on your Mac — a single cover frame or one-per-second stills, no command line, nothing uploaded. One step with FFmix.
- Output
- 1-frame-per-second stills
- Processing
- On your Mac
- Setup
- About 2 minutes to set up
- Access
- Free local task
Need stills out of a video — a thumbnail, a contact sheet, frames to proof your captions against? You don’t have to screenshot-scrub through a player.
FFmix exports frames as clean JPGs: one high-quality cover frame, or a one-per-second sequence you can flip through. It runs on your Mac with nothing uploaded, and you can see the exact command before it runs.
Steps
- 1 Drag your video into FFmix.
- 2 Pick the 1-frame-per-second stills preset (or Cover frame JPG for a single image).
- 3 Confirm and click Start — the .jpg images save next to the video.
Advanced: canonical ffmpeg recipe
This is the canonical recipe. FFmix adapts encoder flags to the engine on your Mac, then shows the final command; the command shown is the command run.
ffmpeg -i input.mp4 -vf fps=1 frame_%04d.jpg Drop a file and go — all local, nothing uploaded.
FAQ
Can I grab just one frame as a thumbnail?
Yes. The Cover frame JPG preset takes a single high-quality frame (by default around the 1-second mark) as a poster or thumbnail base: `ffmpeg -ss 00:00:01 -i input.mp4 -vframes 1 -q:v 2 cover.jpg`.
How many frames per second can I export?
The stills preset grabs one frame per second by default. Change the rate to pull more or fewer — `fps=2` for two per second, or drop the filter to export every frame.
Is anything uploaded?
No. Frames are extracted locally through the bundled ffmpeg engine; your video never leaves your Mac.
Related guides
Place a PNG logo or text watermark on a video on Mac with nine-position controls, opacity and margin. Preview it, inspect the command, then run locally.
How to speed up or slow down a video on MacChange video speed from 0.25× to 4× on Mac, with an option to preserve voice pitch. Preview the exact ffmpeg filters and process locally.
How to crop a video on Mac (visual crop, no command line)Crop a video to a region or aspect ratio on your Mac — visual selection with ratio lock, no command line, nothing uploaded. One step with FFmix.
How to merge (concatenate) videos on Mac without re-encodingJoin multiple clips into one video on your Mac — instant and lossless when they match, no command line, nothing uploaded. One step with FFmix.