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.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
4  
Can you explain what these commands do? Not everyone knows what these commands are or how to use them. – DragonLord Mar 31 at 11:31
They're installed with cuetools. Read the man page. – Rob Apr 8 at 17:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.