Skip to content

Instantly share code, notes, and snippets.

@receptor
Created February 28, 2019 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save receptor/f7dce35373de4305347620e11c6a34b2 to your computer and use it in GitHub Desktop.
Save receptor/f7dce35373de4305347620e11c6a34b2 to your computer and use it in GitHub Desktop.
Convert flac to m4a
brew install ffmpeg
cd /path/to/flac
for i in *.flac; do ffmpeg -i "$i" -vn -c:a alac "$(basename "$i" .flac).m4a"; done;