Last active
August 15, 2021 07:19
-
-
Save sahara-ooga/41032d619a85d6dd1971577b055eb8aa to your computer and use it in GitHub Desktop.
Convert `.aiff` files to `.mp3`
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
# precondition | |
# install ffmpeg | |
for f in *.aiff; | |
do | |
ffmpeg -i "$f" -f mp3 -acodec libmp3lame -ab 320000 -ar 44100 "output/${f%.aiff}.mp3"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment