Last active
August 29, 2015 14:26
-
-
Save NHQ/f9810f70fd17e75597ff to your computer and use it in GitHub Desktop.
convert up 1000 pngs named from "frame000.png" to "frame999.png" into a 16fps video. Note the -i flag for file names.
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
avconv -framerate 16 -f image2 -i frame%03d.png -c:v h264 -crf 1 mov.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment