Skip to content

Instantly share code, notes, and snippets.

@antoniocapelo
Created November 6, 2019 17:32
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 antoniocapelo/f889eb2a2ce12da7e1a2c85884775e0f to your computer and use it in GitHub Desktop.
Save antoniocapelo/f889eb2a2ce12da7e1a2c85884775e0f to your computer and use it in GitHub Desktop.
Batch wav to mp3
for file in *.wav; do lame -V2 "$file" "${file%.wav}".mp3 -b 128; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment