Created
February 17, 2016 03:16
-
-
Save arirusso/1c328f0538a8aef2d224 to your computer and use it in GitHub Desktop.
Convert directory of wav files to mp3 in OSX using lame
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
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