Skip to content

Instantly share code, notes, and snippets.

@gcatlin
Created February 16, 2012 14:07
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 gcatlin/1845095 to your computer and use it in GitHub Desktop.
Save gcatlin/1845095 to your computer and use it in GitHub Desktop.
Convert audio files - m4a to mp3
# source: http://stackoverflow.com/a/5057305
# finds all the files in the current directory, converts them to mp3, using
# the original file name and changing the file extension
find . | parallel ffmpeg -i {} -ab 192k -acodec libmp3lame -ac 2 {.}.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment