Browser FFmpeg recipe

Extract Frames from Video Online with FFmpeg

Export one JPG frame per second from the source video.

Command

Run this FFmpeg command

ffmpeg -i input.mp4 -vf fps=1 frame_%03d.jpg frame_%03d.jpg

When to use it

  • storyboards
  • thumbnails
  • visual review

How it works

  1. Upload the video file.
  2. Adjust the fps value for more or fewer frames.
  3. Run FFmpeg and download the generated frame archive.

Option reference

OptionWhat it does
fps=1Exports one frame for each second of video.
frame_%03d.jpgCreates numbered JPG image files.
-vfApplies a video filter graph.

Practical notes

  • Increase fps to extract more frames.
  • Many output images are downloaded as a zip file.

FAQ

How do I extract every frame?

Remove the fps filter, but expect many output images for long videos.

Can I output PNG frames?

Yes. Use the video to images recipe or change the filename extension to png.