Last active
August 29, 2015 14:01
-
-
Save Eugene-Shapovalov/3d4a89be3d6532e252f0 to your computer and use it in GitHub Desktop.
flac2mp3
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/sh | |
for flac in *.flac; | |
do | |
wav="${flac%.*}".wav | |
# convert 2 wav | |
flac -d "$flac" | |
# convert 2 mp3 vbr max | |
lame -V 0 -h "$wav" | |
rm "$wav" | |
done | |
#mp3splt -c input.cue output.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment