Hi,

In article <[EMAIL PROTECTED]>,
           JohnSwenson<[EMAIL PROTECTED]> wrote:
> This sounds like a neat solution, just one question: what are you using
> to rip the CD to flac with an embeded cue sheet? 

I use the following script. I then run flactag on the resulting flac file to
get all the 'useful' info into the tags.

Andy

#!/bin/sh
if [ $1 ]
then

        FILENAME="$1-ate +"%Y-%m-%d.%H:%M:%S"-$$"
        cdrdao read-cd --device /dev/hdc --driver generic-mmc \
                --datafile $FILENAME.bin $FILENAME.toc
        cueconvert $FILENAME.toc $FILENAME.cue
        if nice flac --replay-gain --endian=big --sign=signed \
                --channels=2 --bps=16 --sample-rate=44100 \
                --cuesheet=$FILENAME.cue $FILENAME.bin
        then
                rm -f $FILENAME.bin
                rm -f $FILENAME.toc
                rm -f $FILENAME.cue
        fi
else
        echo "Usage: $0 cdname"
Hi,

In gmane.music.equipment.slimdevices.unix, you wrote:
>
> This sounds like a neat solution, just one question: what are you using
> to rip the CD to flac with an embeded cue sheet? 

I use the following script. I then run flactag on the resulting flac file to
get all the 'useful' info into the tags.

Andy

#!/bin/sh
if [ $1 ]
then

        FILENAME="$1-ate +"%Y-%m-%d.%H:%M:%S"-$$"
        cdrdao read-cd --device /dev/hdc --driver generic-mmc \
                --datafile $FILENAME.bin $FILENAME.toc
        cueconvert $FILENAME.toc $FILENAME.cue
        if nice flac --replay-gain --endian=big --sign=signed \
                --channels=2 --bps=16 --sample-rate=44100 \
                --cuesheet=$FILENAME.cue $FILENAME.bin
        then
                rm -f $FILENAME.bin
                rm -f $FILENAME.toc
                rm -f $FILENAME.cue
        fi
else
        echo "Usage: $0 cdname"
fi

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix

Reply via email to