Created
July 9, 2015 03:25
-
-
Save ianaya89/66fd60c9c8b8315f8ccc to your computer and use it in GitHub Desktop.
Commands to create video screen grabs with ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First Frame | |
ffmpeg -i myvideo.webm -ss 00:00:01 -vframes 1 first-frame.png | |
# Frames at Second Intervals | |
ffmpeg -i myvideo.webm -vf fps=fps=1 screen-%d.png | |
# Frames at Minute Intervals | |
ffmpeg -i myvideo.webm -vf fps=fps=1/60 screen-%03d.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment