Created
November 8, 2010 02:16
-
-
Save evilchili/667304 to your computer and use it in GitHub Desktop.
process a list of MP3s in the current directory with LAME
This file contains 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
# assumes wav files are named according to the format 'N. Track Name.wav' | |
ls *.wav |cut -d. -f1-2 | xargs -I % lame -V0 --vbr-new --nohist "%.wav" "%.mp3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment