Skip to content

Instantly share code, notes, and snippets.

@spotco
Created January 5, 2014 08:50
Show Gist options
  • Save spotco/8265971 to your computer and use it in GitHub Desktop.
Save spotco/8265971 to your computer and use it in GitHub Desktop.
bash convert files to mp3 sox bash
for f in *.m4a; do sox "$f" -C 56 "${f%.m4a}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment