How to Split Big FLAC File into Tracks and Fill ID3 Tags

cueflacid3linux

I have a music album, but whole album is in single flac file and tracks are listed in cue file. So I'd like to split it into tracks, but also fill the id3 tags and name files by track name.

Best Answer

Install reaquired packages on Debian (Ubuntu):

sudo apt-get install cuetools shntool flac

Split flac file and fill id3 tags:

cuebreakpoints sample.cue | shnsplit -o flac sample.flac
cuetag sample.cue split-track*.flac

Some systems has cuetag.sh instead of cuetag.

Related Question