Created
April 8, 2014 21:19
-
-
Save Swelly/10194209 to your computer and use it in GitHub Desktop.
Bash script to convert .flac files to .mp3
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 *.flac ; do ffmpeg -i "$FILE" -f mp3 -ab 192000 "`basename "$FILE" .flac`.mp3" || break; done) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment