Skip to content

Instantly share code, notes, and snippets.

@benjibee
Created June 23, 2014 10:40
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save benjibee/166b4e35c45dbd503d3b to your computer and use it in GitHub Desktop.
Convert FLAC to Mp3 (AAC)
brew install ffmpeg
## cd into the folder containing the FLAC files
for f in *.flac; do ffmpeg -i "$f" -aq 1 "${f%flac}mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment