Last active
May 7, 2017 19:01
-
-
Save josby/bc1e5e976d6804e856004b42c7edf103 to your computer and use it in GitHub Desktop.
Encode list of m4a files to mp3 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 newfiles/"${f%.m4a}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment