Skip to content

Instantly share code, notes, and snippets.

@Brainiarc7
Forked from savvot/ffmpeg-extract-keyframes.sh
Created December 14, 2018 23:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Brainiarc7/35909986a66acfd32559c371725f8a52 to your computer and use it in GitHub Desktop.
Save Brainiarc7/35909986a66acfd32559c371725f8a52 to your computer and use it in GitHub Desktop.
Extract only keyframes (I-frames) from video to images with console ffmpeg
ffmpeg -ss <start_time> -i video.mp4 -t <duration> -q:v 2 -vf select="eq(pict_type\,PICT_TYPE_I)" -vsync 0 frame%03d.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment