Created
November 11, 2016 14:06
-
-
Save mdauphin/d6c792eb1d4743d8ea32d8929e9f3821 to your computer and use it in GitHub Desktop.
Convert a m4a folders content to 128k mp3 with ID3Tag by using ffmpeg under windows
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" -ab 128k -map_metadata 0 "%%~nF.mp3" |
Linux version
for f in *.flac; do avconv -i "$f" -ab 128k -map_metadata 0 "${f%%.flac}.mp3"; done
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Linux version
for f in *.flac; do avconv -i "$f" -ab 128k -map_metadata 0 "${f%%.flac}.mp3"; done