>Hey,
>
>anyone know how to get a TOC onto the cd when burning audio CDs?
>
>I've been using the command:
>
>       
>
>       cdrecord -v dev=0,4,0 -speed=4 -pad -audio `cat songlist`
>
>Which works great. The CD sounds like it ought to, but when playing 
>with something gcd, etc., none of the track information is available.
>
>Any idea what I'm doing wrong?  I've tried including the -toc option, 
>but cdrecord states that:
>
>       cdrecord: No tracks allowed with this option
>
>Thanks,
>

I've been told the following two scripts will do what you want.  You
could look at the format to see what the files should look like.
Hopefully you could then create your own custom disks that CDDB knows
nothing about.

# ------------------------------ Read disc ------------------------------
#!/bin/tcsh -x

cdrdao read-toc --device /dev/scd1 --driver plextor cd.toc
cdrdao read-cddb --device /dev/scd1 --driver plextor cd.toc
cdparanoia -d /dev/scd1 1- data.wav

# ------------------------------ write disc ------------------------------
#!/bin/tcsh

time cdrdao write --device 1,6,0 --driver generic-mmc --speed 12 cd.toc

--------------------------------------------------------------
 Robert E. Anderson                     email: [EMAIL PROTECTED]
 Systems Programmer                     phone: (603) 862-3489
 UNH Research Computing Center            fax: (603) 862-1761
--------------------------------------------------------------

*****************************************************************
To unsubscribe from this list, send mail to [EMAIL PROTECTED]
with the text 'unsubscribe gnhlug' in the message body.
*****************************************************************

Reply via email to