Install required libs (this was done on a mac).
brew install cuetools flac ffmpeg shntool
Split the file
shnsplit -o flac -f file.cue file.flac
Links:
https://coderwall.com/p/6ydyoq/how-to-split-flac-files-by-cue-and-convert-to-alac-on-mac-os-x
Just a blog of techie stuff.
Tag: flac
Install required libs (this was done on a mac).
brew install cuetools flac ffmpeg shntool
Split the file
shnsplit -o flac -f file.cue file.flac
Links:
https://coderwall.com/p/6ydyoq/how-to-split-flac-files-by-cue-and-convert-to-alac-on-mac-os-x
install flac and lame.
for file in *.flac; do $(flac -cd “$file” | lame -h – “${file%.flac}.mp3”); done
to have a constant bitrate of 192 use:
for file in *.flac; do $(flac -cd “$file” | lame -b 192 – “${file%.flac}.mp3”); done