Skip to content

Instantly share code, notes, and snippets.

@vsliouniaev
Created March 3, 2018 13:40
Show Gist options
  • Save vsliouniaev/caa90871d97d672d7e2a3437f0be7ee3 to your computer and use it in GitHub Desktop.
Save vsliouniaev/caa90871d97d672d7e2a3437f0be7ee3 to your computer and use it in GitHub Desktop.
Bulk convert .aa to mp3 using ffmpeg
#!/bin/bash
for i in *.aa
do name=`echo $i | cut -d'.' -f1`;
echo $name;
ffmpeg -i "$i" -c:a libmp3lame -ac 2 -q:a 2 "${name}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment