Skip to content

Instantly share code, notes, and snippets.

@sahara-ooga
Last active August 15, 2021 07:19
Show Gist options
  • Save sahara-ooga/41032d619a85d6dd1971577b055eb8aa to your computer and use it in GitHub Desktop.
Save sahara-ooga/41032d619a85d6dd1971577b055eb8aa to your computer and use it in GitHub Desktop.
Convert `.aiff` files to `.mp3`
# 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