Created
March 22, 2016 10:12
-
-
Save candycode/3c3472ff83e9d587282c to your computer and use it in GitHub Desktop.
Convert multiple files with ffmpeg
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
for f in ../flv/*.flv; do echo "Converting $f"; g=`basename $f .flv`; ffmpeg -i ../flv/$f -c:v libx264 -crf 19 -strict experimental $g.mp4 || echo FAILED; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment