Skip to content

Instantly share code, notes, and snippets.

@jzucker2
Last active January 13, 2018 06:25
Show Gist options
  • Save jzucker2/7ace23c38070956a01bc97b87a1baf6f to your computer and use it in GitHub Desktop.
Save jzucker2/7ace23c38070956a01bc97b87a1baf6f to your computer and use it in GitHub Desktop.

Convert to mp3

Found an example online

for i in *.m4a; do ffmpeg -i "$i" "${i%.*}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment