Skip to content

Instantly share code, notes, and snippets.

@pithyless
Created August 18, 2012 12:08
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pithyless/3386424 to your computer and use it in GitHub Desktop.
Save pithyless/3386424 to your computer and use it in GitHub Desktop.
Convert FLAC to ALAC/AAC on a Mac
Step 1: install flac via Homebrew
brew install flac
Step 2: decode FLAC to AIFF
cd path/to/directory/with/files/to/convert
for i in *.flac; do
flac -d --force-aiff-format "$i"
done
Step 3: copy AIFF files to iTunes
Step 4: convert in iTunes to desired (ALAC/AAC) format
Thanks to: http://coderwall.com/p/kwtybg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment