33

I have some .flac albums I ripped as one big file to save some space (Lossless CD rips are roughly 500MB each). Now that I have more storage I would like to split them back to their original files.

Is there a native .flac/.cue splitter for Debian-based systems?

I found some information but it is either old, just for mp3 or using Wine, and this is not what I want.

Also I found a Nautilus script, but I don't think this will be lossless, also it only performs a very specific task and I'd like some customization options.

Can anyone provide a lossless FLAC .cue splitter with native support, and a lot of conversion options?

Please no Wine.

karel
  • 122,292
  • 133
  • 301
  • 332
Mark Kirby
  • 18,949
  • 19
  • 79
  • 116

9 Answers9

48

First you need to install cuetools and shntool. From the terminal type:

sudo apt install cuetools shntool flac

To split a flac file back to the original files using a .cue file:

cuebreakpoints '<cue file>' | shnsplit -o flac '<audio flac file>'  

You can drag the cue file and the audio flac file from the file manager into the terminal in order to autocomplete the paths for '<cue file>' and '<audio flac file>'. When you run the command, the terminal will show you the results of each new flac file as it is created, one new flac file at a time ("split-track01.flac" "split-track02.flac" ...), and then stop after all of the new flac files have been created. It only takes a few seconds to create each new flac file. If your .cue file is accurate, the results will be more accurate and less time-consuming than if you split the flac file manually in Audacity.

karel
  • 122,292
  • 133
  • 301
  • 332
20

There is an app called Flacon which does exactly this.

To install:

sudo add-apt-repository ppa:flacon
sudo apt-get update
sudo apt-get install flacon

enter image description here

7

I needed to split large flac and set file name and tag from the cue file, and this worked best for me:

  1. cd to a folder with one pair of cue and flac
  2. type this: shnsplit -f *.cue -t "%n - %p - %t" -o "flac flac -s -8 -o %f -" *.flac
  3. delete the original flac file
  4. tag the files using: cuetag *.cue *.flac

Example of output:

Splitting [Edvard Grieg - Complete Songs Vol.III.flac] (76:03.40) --> [25 - Edvard Grieg - Sighs, EG 134.flac] (2:43.08) : 100% OK

reference: CUE_Splitting

UPDATE

I wrote the following script for my convenience. To use it - cd to a directory with one pair of matching ape and cue files.

mkdir -p orig
mv *ape orig/.
shnsplit -f *.cue -t "%n - %p - %t" -o "flac flac -s -8 -o %f -" orig/*.ape
rm -f 00*
cuetag *.cue *.flac
#fix bad file names
find . -exec rename 's/[^\x00-\x7F]//g' "{}" \;

name this script as split_ape, chmod +x it and put in some directory in your path. I made a similar script for flac file as source, just replace every ape with flac in this script.

Amir Uval
  • 1,161
3

The easiest way is using K3B.

1.- Open the CUE file in K3B. 2.- Choose convert tracks to FLAC. 3.- Press Start.

It will not re-convert the tracks but only split them into tracks according to the CUE file. It will keep the original name of each track and it takes second to complete the "convertion/split".

2

and for flac:

    cat file.cue | shnsplit -o flac -t %n-%t file.flac

split the flac file and add to the resulting files track number (%n) and title name (%t)

mdneagu
  • 29
2

You can split CUE file into separate FLAC tracks using fmedia (http://fmedia.firmdev.com) with a single command:

fmedia YOUR_FILE.cue --out='$tracknumber. $artist - $title.flac'

With this command you'll split all tracks from one CUE file into separate FLAC files named like "01. ARTIST - TITLE.flac". Note, that the output files will have exactly the same audio quality and track duration precisely as the original.

Or you may copy just one track from the .cue file:

fmedia YOUR_FILE.cue --out='$tracknumber. $artist - $title.flac' --track=7

You can also overwrite meta information during the splitting, e.g.:

fmedia YOUR_FILE.cue --out=mytrack.flac --meta='artist=COOL ARTIST'

fmedia has minimum external dependencies (i.e. cuetools, libFLAC, etc. are NOT needed to be installed on your system), it works on 64-bit Debian-based systems, but it doesn't work on 32-bit systems.

def
  • 29
2

Here is a PHP script:

<?php
$s_cue = $argv[1];
$a_cue = file($s_cue);
$n_row = -1;
foreach ($a_cue as $s_row) {
   $s_trim = trim($s_row);
   $a_row = str_getcsv($s_trim, ' ');
   if (preg_match('/^FILE\s/', $s_row) == 1) {
      $s_file = $a_row[1];
   }
   if (preg_match('/^\s+TRACK\s/', $s_row) == 1) {
      $n_row++;
      $a_table[$n_row]['track'] = $a_row[1];
   }
   if (preg_match('/^\s+TITLE\s/', $s_row) == 1) {
      $a_table[$n_row]['title'] = $a_row[1];
   }
   if (preg_match('/^\s+PERFORMER\s/', $s_row) == 1) {
      $a_table[$n_row]['artist'] = $a_row[1];
   }
   if (preg_match('/^\s+INDEX\s/', $s_row) == 1) {
      $s_dur = $a_row[2];
      $a_frame = sscanf($s_dur, '%d:%d:%d', $n_min, $n_sec, $n_fra);
      $n_index = $n_min * 60 + $n_sec + $n_fra / 75;
      $a_table[$n_row]['ss'] = $n_index;
      if ($n_row > 0) {
         $a_table[$n_row - 1]['to'] = $n_index;
      }
   }
}
$a_table[$n_row]['to'] = 10 * 60 * 60;
foreach ($a_table as $m_row) {
   $a_cmd = [
      'ffmpeg',
      '-i', $s_file,
      '-ss', $m_row['ss'],
      '-to', $m_row['to'],
      '-metadata', 'artist=' . $m_row['artist'],
      '-metadata', 'title=' . $m_row['title'],
      '-metadata', 'track=' . $m_row['track'],
      $m_row['track'] . ' ' . $m_row['title'] . '.m4a'
   ];
   $a_esc = array_map('escapeshellarg', $a_cmd);
   $s_esc = implode(' ', $a_esc);
   system($s_esc);
}
Zombo
  • 1
1

Install shntool

sudo apt-get install shntool

If you wish to automatically preserve file names, you can simply use:

cat infile.cue | shnsplit -t "%n - %p - %t" infile.wav
0

This Python script works for me https://github.com/fischpo/CUE-Sheet-Tracks

python CUE.py -i '/tmp'