Skip to content

Instantly share code, notes, and snippets.

@dually8
Created July 13, 2021 02:14
Show Gist options
  • Save dually8/ad90f8a829cc2f5c1eb6d5968b142220 to your computer and use it in GitHub Desktop.
Save dually8/ad90f8a829cc2f5c1eb6d5968b142220 to your computer and use it in GitHub Desktop.
ffmpeg convert flac to aac
# 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