Skip to content

Instantly share code, notes, and snippets.

@ericbaranowski
Forked from championofblocks/wav-mp3
Created August 20, 2018 22:49
Show Gist options
  • Select an option

  • Save ericbaranowski/25067ddd6de0dab328ddf3356dcc6d93 to your computer and use it in GitHub Desktop.

Select an option

Save ericbaranowski/25067ddd6de0dab328ddf3356dcc6d93 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