Created
February 8, 2016 17:53
-
-
Save charliecm/999979b472602dc80bba to your computer and use it in GitHub Desktop.
Sample snippet for converting a sequence of JPG images into a video (good for timelapse).
This file contains 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 -r 25 -start_number 0 -i 'frame_%05d.jpg' -c:v libx264 -vf 'fps=25,format=yuv420p' out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment