Created
December 3, 2012 21:02
-
-
Save thure/4197998 to your computer and use it in GitHub Desktop.
Split .flac and convert to .m4a (ALAC) on MacOS X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install flac ffmpeg cuetools shntool | |
cuebreakpoints 1.cue | shnsplit -o flac 1.flac | |
for f in split-track*.flac | |
do | |
ffmpeg -i "$f" -acodec alac "${f%.flac}.m4a"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment