Skip to content

Instantly share code, notes, and snippets.

@kleo
Forked from championofblocks/wav-mp3
Created April 19, 2018 14:19
Show Gist options
  • Save kleo/25d9ffe87d06bd21bc352579e7161b5b to your computer and use it in GitHub Desktop.
Save kleo/25d9ffe87d06bd21bc352579e7161b5b to your computer and use it in GitHub Desktop.
Command line bash to convert all wav to mp3
for i in *.wav; do lame -b 320 -h "${i}" "${i%.wav}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment