Created
January 27, 2012 09:17
-
-
Save miura/1687913 to your computer and use it in GitHub Desktop.
batch conversion 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
#!/bin/sh | |
for f in *.flv; | |
do | |
echo "Processing $f" | |
ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment