Skip to content

Instantly share code, notes, and snippets.

@gerjantd
Created September 27, 2014 10:54
Show Gist options
  • Save gerjantd/7f5b22b77dc5b72324c1 to your computer and use it in GitHub Desktop.
Save gerjantd/7f5b22b77dc5b72324c1 to your computer and use it in GitHub Desktop.
m4a -> mp3
for f in *.m4a; do export fb=`basename "$f" .m4a`; avconv -i "$f" -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 "$fb".mp3; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment