Created
April 25, 2016 17:44
-
-
Save VersionMismatch/c4318e84fca8dd035552285c1bdf37a0 to your computer and use it in GitHub Desktop.
Convert m4a to mp3 console (After installing ffmpeg codec)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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