Skip to content

Instantly share code, notes, and snippets.

@gre
Created February 9, 2013 10:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gre/4744775 to your computer and use it in GitHub Desktop.
Save gre/4744775 to your computer and use it in GitHub Desktop.
Convert all *.wav in .mp3 and .ogg (useful for HTML5 audio support on all browsers...)
for f in *.wav; do sox $f ${f%%.wav}.mp3; sox $f ${f%%.wav}.ogg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment