Skip to content

Instantly share code, notes, and snippets.

@marek-pietrzak-tg
Created September 25, 2019 07:44
Show Gist options
  • Save marek-pietrzak-tg/129faf027a1cc62a3a1e6c49820ea613 to your computer and use it in GitHub Desktop.
Save marek-pietrzak-tg/129faf027a1cc62a3a1e6c49820ea613 to your computer and use it in GitHub Desktop.
Convert wav to mp3 from command line
# just copy and paste below command to the folder with wav files:
for f in *.wav; do lame --vbr-new -V 3 "$f" "${f%.wav}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment