Created
August 2, 2014 12:53
-
-
Save asus4/f733a99301024ee5b81d to your computer and use it in GitHub Desktop.
convert all mov files to flv
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/zsh | |
# normalize | |
function toflv() { | |
ffmpeg -i $1 -acodec copy -vcodec copy ${1%.mov}.flv | |
} | |
while [ "$1" != "" ] | |
do | |
toflv $1 | |
shift | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment