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