Created
March 1, 2020 15:10
-
-
Save silverprize/6d7213b7ebfebc53d6deaec44262086d to your computer and use it in GitHub Desktop.
m4a to mp3 with ffmpeg
This file contains 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
# convert all m4a to mp3 in directory | |
# mp3 256k bitrate | |
for f in *.m4a; do name=`basename ${f} .m4a`; ffmpeg -i ${f} -acodec libmp3lame -ab 256k ${name}.mp3; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment