Created
March 12, 2015 02:55
-
-
Save randynobx/bf9b62549728df0ce7f3 to your computer and use it in GitHub Desktop.
Bulk conversion of .m4a files in a directory to mp3 files, using ffmpeg.
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
for f in *.m4a; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment