Skip to content

Instantly share code, notes, and snippets.

@ifnull
Last active August 29, 2015 14:08
Show Gist options
  • Save ifnull/c4827b9a1fbe5c70bd00 to your computer and use it in GitHub Desktop.
Save ifnull/c4827b9a1fbe5c70bd00 to your computer and use it in GitHub Desktop.
jpg2mp4: Time lapse images to video using FFMPEG.
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