Last active
August 29, 2015 14:05
-
-
Save bjou/7f0994e74ff6294c61f9 to your computer and use it in GitHub Desktop.
Convert Image Sequence to Playable MOV
This file contains hidden or 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
| ffmpeg -framerate 3 -i %05d.png -c:v libx264 -r 3 <MP4FILE>.mp4 | |
| ffmpeg -i <MP4FILE>.mp4 -c:v libx264 -preset fast \ | |
| -pix_fmt yuv420p -r 23.98 -g 15 -s <W>x<H> -b 2500k -bt 300k \ | |
| -f mov <OUTFILE>.mov |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add
-vf "transpose=1"for flipping video.