home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / CDR18A24.ZIP / doc / More-Docs / AN-1.8a18 < prev    next >
Encoding:
Text File  |  1999-02-21  |  3.7 KB  |  136 lines

  1. NEW features of cdrecord-1.8a18:
  2.  
  3. -    Support for ISRC on MMC drives
  4.  
  5. -    Support for MCN on MMC drives
  6.  
  7. -    DAO (SAO) support for MMC drives that support session at once.
  8.     This should be true all MMC drives except the following:
  9.  
  10.     -    BTC BCE621E
  11.     -    Memorex CD*-*622
  12.     -    Philips CDD-3600 / CDD-3610
  13.     -    HP-7100 / HP-7200
  14.         These MMC drives will need DAO/raw support and thus
  15.         will be supported later.
  16.  
  17.     Most of the current drives that are in high volume use are
  18.     supported in this stage of DAO.
  19.  
  20.     DAO writing has been tested with the following drives:
  21.     -    Plextor    PX-R820
  22.     -    Plextor    PX-W4220
  23.     -    Yamaha  CDR-4260
  24.  
  25.  
  26.     Hot to use:
  27.  
  28.     To create a DAO CD-ROM:
  29.  
  30.         mkisofs -o iso.raw dir ....
  31.         cdrecord .... -dao iso.raw
  32.  
  33.     To copy a music CD:
  34.  
  35.         cdda2wav -Db,t,l -B
  36.         cdrecord ... -dao audio*.au
  37.         or 
  38.         cdrecord ... -dao audio*.wav
  39.  
  40.         depending on the outputformat that was created by cdda2wav.
  41.  
  42.         IMPORTANT: The audio files must include the pregap data of the
  43.                 track that follows the current track.
  44.                 This is guaranteed if the data was generated by
  45.                 cdda2wav.
  46.  
  47.     Later cdrecord versions will read the audio*.inf files from cdda2wav
  48.     and interpret the fields for:
  49.  
  50.     -    Preemphasis
  51.     -    Copy protection (SCMS)
  52.     -    Index list
  53.     -    MCN
  54.     -    ISRC
  55.     -    CD-Text data
  56.  
  57.     NOTE that the current command line options that are needed for
  58.     DAO will change in the future.
  59.  
  60.     Cdrecord supports audio and CD-ROM (ISO/IEC 10149) in the current
  61.     DAO implementation. You may create audio CD's, CD-ROM's
  62.     and mixed mode CD's.
  63.  
  64.     Note that it is not possible to write a disk in DAO mode if the
  65.     size of a track is not known before the write starts.
  66.     This implies, that it is not possible to use the usual pipe:
  67.  
  68.     mkisofs ...... | cdrecord .... -
  69.  
  70.     If you like to write a DAO CD without creating a imtermediate
  71.     file you will need to tell cdrecord the size of the track.
  72.     The mkisofs that comes with cdrecord supports a option -print-size
  73.  
  74.     To create a DAO CD in pipe mode use the following command sequence:
  75.  
  76.     mkisofs -print-size dir ...
  77.  
  78.     This will print:
  79.  
  80.     Using SCSI-LIN.000;1 for  ./libscg/scsi-linux-sg.c (scsi-linux-pg.c)
  81.     Using SCSI-BSD.000;1 for  ./libscg/scsi-bsd.c (scsi-bsd-os.c)
  82.     Total extents scheduled to be written = 1751
  83.  
  84.     Now call mkisofs with exactly the same args except the -print-size
  85.     option:
  86.  
  87.     mkisofs ..... dir ... | cdrecord .... -dao tsize=1751s -
  88.  
  89.     Later cdrecord versions may support to use cdrecord -isosize even from a pipe.
  90.     In any case, even though it seems to be more complicated to
  91.     write DAO data disks, there is a clear advantage:
  92.  
  93.     -    Operating systems with a read ahead bug (like Linux) will not
  94.         be affected if you write a DAO data disk because there then will
  95.         be no two unreadable run-out sectors at the end of each track.
  96.  
  97.     -    Some CD-R or CD-RW drives allow overburning only in DAO mode.
  98.         This drives are mainly the Yamaha and Plextor drives.
  99.  
  100. mkisofs:
  101.  
  102. %
  103.  
  104. cdda2wav:
  105.  
  106. -    Wait for drive to become ready after load
  107. -    changed toc to MSF values 
  108. -    added USS/OSS sound support for FreeBSD 
  109. -    new INF file format for cdrecord 
  110. -    additional index 0 offset in INF file 
  111. -    bugfix for the index scanner 
  112.  
  113. -    CD-TEXT now working with the following features:
  114.     o     cd text crc check and one bit correction
  115.     o     cd text titles and MCN/ISRC fully supported
  116.     o     cd text detection enhanced
  117.  
  118.  
  119. CYGWIN NT-4.0 NOTES:
  120.  
  121. To compile on Cygwin32, get Cygwin32-beta20 and install it.
  122. then create a symlink from /bin to the .../bin directory where bash is located.
  123. Now run 'make' ...
  124.  
  125. The files are located on:
  126.  
  127. ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/alpha ...
  128.  
  129. NOTE:    These tar archives are 100% ansi compatible. Solaris 2.x tar and GNU
  130.     tar may get some minor trouble.
  131.  
  132. WARNING: Do not use 'mc' to extract the tar file!
  133.     All mc versions before 4.0.14 cannot extract symbolic links correctly.
  134.  
  135. Joerg
  136.