Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VersionMismatch/c4318e84fca8dd035552285c1bdf37a0 to your computer and use it in GitHub Desktop.
Save VersionMismatch/c4318e84fca8dd035552285c1bdf37a0 to your computer and use it in GitHub Desktop.
Convert m4a to mp3 console (After installing ffmpeg codec)
#install ffmpeg from homebrew
#brew install ffmpeg
for f in *.m4a; do ffmpeg -i "$f" -acodec libmp3lame -ab 256k "${f%.m4a}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment