Created
September 7, 2015 09:31
-
-
Save jabooth/6a2fa7ee5da2e4c5c98c to your computer and use it in GitHub Desktop.
ffmpeg recipes
This file contains 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
# 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