Created
August 5, 2014 19:17
-
-
Save mateusz-fiolka/5115b43a34b18cad56f2 to your computer and use it in GitHub Desktop.
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
find . -iname '*.flv' | while read FILE ; do | |
TARGET_FILE=$(echo $FILE | sed -e 's/.flv$/.mp4/') | |
ffmpeg -i $FILE $TARGET_FILE || echo ok | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment