Skip to content

Instantly share code, notes, and snippets.

@evilchili
Created November 8, 2010 02:16
Show Gist options
  • Save evilchili/667304 to your computer and use it in GitHub Desktop.
Save evilchili/667304 to your computer and use it in GitHub Desktop.
process a list of MP3s in the current directory with LAME
# 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