Skip to content

Instantly share code, notes, and snippets.

@charliecm
Created February 8, 2016 17:53
Show Gist options
  • Save charliecm/999979b472602dc80bba to your computer and use it in GitHub Desktop.
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).
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