Created
February 25, 2017 13:36
-
-
Save r6m/970495f9520471101bbf6236d458811c to your computer and use it in GitHub Desktop.
convert images into video using 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
ffmpeg -i input.flv -vf fps=1 out%04d.png | |
# fps=1 (1 image per second) | |
# fps=2 (2 image per second) | |
# fps=1/60 (1 image per minute) | |
# fps=1/600 (1 image per 10 minutes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment