Created
July 17, 2014 10:46
-
-
Save msgodf/4f6ca8a1df5c65bb9483 to your computer and use it in GitHub Desktop.
Encode a bunch of FLAC files in the current directory 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
| ls -1|sed -e "s/'/\\\'/g" -e "s/.flac//g"|xargs -I{} avconv -i {}.flac -c:a libmp3lame -b:a 256k {}.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment