Created
July 13, 2021 02:14
-
-
Save dually8/ad90f8a829cc2f5c1eb6d5968b142220 to your computer and use it in GitHub Desktop.
ffmpeg convert flac to aac
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
# Assuming using fish shell | |
find ./ -iname '*.flac' | xargs -I '{}' basename '{}' '.flac' | xargs -I '{}' ffmpeg -i '{}'.flac -c:a aac -b:a 320k '{}'.m4a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment