Last active
December 21, 2015 05:22
-
-
Save novogrammer/e3450f491b285eeae707 to your computer and use it in GitHub Desktop.
Photoshopで書き出した連番PNGをiPhoneとかでも読めるMP4にするやつ
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
#!/bin/bash | |
ffmpeg -r 15 -i "./input%04d.png" -an -r 15 -pix_fmt yuv420p -vcodec libx264 -qscale:v 0 ./output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment