-
-
Save lancewoo/01434bc4f5f2948dd5e3eb4b7a7c46ea to your computer and use it in GitHub Desktop.
Convert Image Sequence to H264 using ffmpeg
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 30 -i DSC_%04d.JPG -c:v libx264 -crf 23 -pix_fmt yuv420p output.mp4 | |
| *glob pattern | |
| ffmpeg -framerate 30 -pattern_type glob -i '*.JPG' -c:v libx264 -crf 23 -pix_fmt yuv420p output.mp4 | |
| http://trac.ffmpeg.org/wiki/Slideshow | |
| http://stackoverflow.com/questions/13163106/ffmpeg-converting-image-sequence-to-video-results-in-blank-video |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment