Skip to content

Instantly share code, notes, and snippets.

@garthhumphreys
Forked from championofblocks/wav-mp3
Created December 26, 2019 04:48
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 garthhumphreys/17ed68313238d64a477f13f44dc96519 to your computer and use it in GitHub Desktop.
Save garthhumphreys/17ed68313238d64a477f13f44dc96519 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