Skip to content

Instantly share code, notes, and snippets.

@goneng
goneng / Converting m4a to mp3.md
Last active April 27, 2018 07:48 — forked from joesepi/Converting m4a to mp3.md
Ways to convert m4a to mp3 on Mac/Unix

Add this to your .profile (or whatever)

# convert files in directory from m4a to mp3
function m4a() {
  find . -iname '*.m4a' -exec bash -c 'ffmpeg -i "$1" "${1/m4a/mp3}"' -- {} \;
}

To setup a Service (contextual menu), create an Automator 'Workflow'