How to extract a frame out of a video using ffmpeg

54,149

Solution 1

Use the select filter:

ffmpeg -i <input> -vf "select=eq(n\,34)" -vframes 1 out.png

counting starts at 0, so 35th = n value of 34.

Solution 2

Two quick-and-dirty ways:

Use the FFmpeg executable with the seek option. You'll need to convert to a time first, e.g. if I want frame 150 and my video is 29.97 FPS the command will be ffmpeg -ss 00:00:05.01 -i myvideo.avi -frames:v 1 myimage.jpg. This might be slightly inaccurate. To seek by exact frame you'd need to use the FFmpeg library with C++.

Another 'hacky' way is using VLC media player. Check menu View -> Advanced controls. Pause video and click the Frame-by-frame button 34 times.

Share:
54,149

Related videos on Youtube

Levan
Author by

Levan

Updated on September 18, 2022

Comments

  • Levan
    Levan over 1 year

    I have a video and I want to extract 35-th frame out of this video.

    I want it to be a png image if possible.

    I know there are a lot of questions like this, but I could not find a solution that was using frame number.

  • jiggunjer
    jiggunjer over 8 years
    On windows with cmd prompt don't use the quotes around select=[...] Good catch with ffmpeg though, I learn something every day :)
  • jiggunjer
    jiggunjer over 8 years
    Also for those interested, this produces the exact same frame as using a calculated time with hexagesimal time format. Tested on a 10.1 second uncompressed video with 300 frames (29.97fps). Time seeked was 00:00:01.17. Though this (the above) method is probably better for encoded formats or samples with high framerates.
  • Elisa Cha Cha
    Elisa Cha Cha over 8 years
    @jiggunjer Use " instead of ' in Windows. Also, 29.97 can be inaccurate. Use 30000/1001.
  • jiggunjer
    jiggunjer over 8 years
    @Levan One more thing, it should be 34 in the command, counting starts at 0.