Skip to content

Instantly share code, notes, and snippets.

@jabooth
Created September 7, 2015 09:31
Show Gist options
  • Save jabooth/6a2fa7ee5da2e4c5c98c to your computer and use it in GitHub Desktop.
Save jabooth/6a2fa7ee5da2e4c5c98c to your computer and use it in GitHub Desktop.
ffmpeg recipes
# convert folder of 000.jpg, 001.jpg, ..., 443.jpg to video 60fps
ffmpeg -framerate 60 -i ./%03d.jpg -pix_fmt yuv420p -s hd1080 -c:v libx264 -preset veryslow -crf 28 -r 60 ~/output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment