Skip to content

Instantly share code, notes, and snippets.

@arirusso
Created February 17, 2016 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arirusso/1c328f0538a8aef2d224 to your computer and use it in GitHub Desktop.
Save arirusso/1c328f0538a8aef2d224 to your computer and use it in GitHub Desktop.
Convert directory of wav files to mp3 in OSX using lame
for i in *.wav; do lame -b 320 -h "${i}" "${i}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment