You are not logged in.
Pages: 1
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
Try running cuesplitter with wine.
Offline
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
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
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, WAVif [ $# -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
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
Pages: 1