You are not logged in.

#1 2007-12-14 21:45:30

voodoo.child
Member
Registered: 2007-11-01
Posts: 30

cue splitter

anybody knows a cue splitter (similar to win program: http://www.shareup.com/CUE_Splitter-dow … 0218.html) for linux/archlinux? i need to split some flacs


--
Alexandru

Offline

#2 2007-12-20 11:02:53

Aakko
Member
Registered: 2007-10-23
Posts: 65

Re: cue splitter

Try running cuesplitter with wine.

Offline

#3 2007-12-20 11:14:36

quarks
Member
From: Netherlands
Registered: 2007-05-14
Posts: 66

Re: cue splitter

I couldn't find a good cue splitter for FLAC either so I just ran foobar2000 under wine.
Works great and is very fast.

Last edited by quarks (2007-12-20 11:17:40)

Offline

#4 2007-12-20 13:59:09

fwojciec
Member
Registered: 2007-05-20
Posts: 1,411

Re: cue splitter

check out: http://linuxbraindump.org/2007/09/03/ho … cue-sheet/
cuetools and shntool packages are in aur.

Or you can use this simple script to make things easier:

#!/bin/bash
#Usage: splitflac.sh file.cue file.flac
cuebreakpoints $1 | shnsplit -o flac $2

Last edited by fwojciec (2007-12-20 14:07:13)

Offline

#5 2008-11-01 13:29:39

print
Member
Registered: 2007-02-27
Posts: 174

Re: cue splitter

This one will preserve the filenames in the shard files, and it does a little arg checking:

#!/bin/bash
# split files -- works on APE, SHN, FLAC, WAV

if [ $# -ne 2 ]
then
  echo "Usage:  `basename $0` <.cue> <.flac|.ape|.wav>"
  exit 65
fi
cuebreakpoints $1 | shnsplit -o flac -f $1 -t "%n - %t" $2

Last edited by print (2008-11-01 13:37:09)


% whereis whatis whence which whoami whois who

Offline

#6 2009-12-23 14:58:41

Slikkie
Member
Registered: 2007-10-11
Posts: 17
Website

Re: cue splitter

A better version of the script here above (use quotes to support filenames with spaces and other characters):

#!/bin/bash
# split files -- works on APE, SHN, FLAC, WAV

if [ $# -ne 2 ]
then
  echo "Usage:  `basename $0` <.cue> <.flac|.ape|.wav>"
  exit 65
fi
cuebreakpoints "$1" | shnsplit -o wav -f "$1" -t "%n - %t" "$2"

Offline

Board footer

Powered by FluxBB