Last active
August 29, 2015 14:08
-
-
Save ifnull/c4827b9a1fbe5c70bd00 to your computer and use it in GitHub Desktop.
jpg2mp4: Time lapse images to 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 \ | |
-f image2 \ | |
-pattern_type glob \ | |
-i './images/*.JPG' \ | |
-c:v libx264 \ | |
-r 29.97 \ | |
out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment