Skip to content

Instantly share code, notes, and snippets.

@aferriss
Last active March 7, 2016 23:26
Show Gist options
  • Save aferriss/945e3137ab14c1961c81 to your computer and use it in GitHub Desktop.
Save aferriss/945e3137ab14c1961c81 to your computer and use it in GitHub Desktop.
ffmpeg command for creating video from image sequence
ffmpeg -f image2 -framerate 15 -i %05d.jpg -c:v libx264 -pix_fmt yuv420p -r 15 128Mov2.mp4
# -r forces framerate
# -f image2 tells ffmpeg its an image sequence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment