Skip to content

Instantly share code, notes, and snippets.

@emrahgunduz
Last active September 17, 2016 15:58
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 emrahgunduz/9089079716a48ee5caf7 to your computer and use it in GitHub Desktop.
Save emrahgunduz/9089079716a48ee5caf7 to your computer and use it in GitHub Desktop.
Convert multiple m4 files to mp3 using ffmpeg
for f in *.m4a; do g=`basename $f .m4a`; ffmpeg -i $f $g.mp3 || echo FAILED; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment