How to split big flac file int tracks and fill the id3 tag?

5,731

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.

Share:
5,731

Related videos on Youtube

kravemir
Author by

kravemir

Just a software developer,..

Updated on September 18, 2022

Comments

  • kravemir
    kravemir almost 2 years

    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.

  • bwDraco
    bwDraco about 12 years
    Can you explain what these commands do? Not everyone knows what these commands are or how to use them.
  • Rob
    Rob about 12 years
    They're installed with cuetools. Read the man page.