Created
April 12, 2015 14:18
-
-
Save sole/7cc3402f5f986036f46f to your computer and use it in GitHub Desktop.
converting audio files in batch
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
(for FILE in *.wav; do ffmpeg -i "$FILE" -f mp3 -ab 256000 -map_metadata 0 -id3v2_version 3 "`basename "$FILE" .wav`.mp3" || break; done) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment