Last active
October 4, 2023 15:33
-
-
Save Gkiokan/aa17e69a4ede712a1afabb4373b98d70 to your computer and use it in GitHub Desktop.
*.aac to *.mp3
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
# Transform all *.aac files to mp3 with ffmpeg | |
for file in *.aac; do ffmpeg -i "$file" -codec:v copy -codec:a libmp3lame -q:a 4 "${file%.aac}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment