home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CDRom / di_cdt.lha / cdtools / README < prev   
Encoding:
Text File  |  1996-09-20  |  3.8 KB  |  118 lines

  1. `cdwrite' is a program to write cds, using libscsi for direct device
  2. access.  It supports both HP Surestore 4020i and simmilar (e.g.,
  3. Philips CDD2000), as well as Yamaha cdr-100 and cdr-102.  However, it
  4. has been tested only on an hp-4020i.
  5.  
  6. It supports `emulated write', which means that the cd writer does the
  7. whole process with it's write laser turned off.  Use this option until
  8. you are confident both you and the hardware know what you are doing.
  9.  
  10. This program can be used to write audio and data disks, also with
  11. multiple tracks and/or sessions.
  12.  
  13. `cdflush' can be used to flush the write buffer, if a write session
  14. aborts, and the writer is in an inconsistent state.
  15.  
  16.  
  17. `cdda' reads digital audio data from cd drives.  It currently supports
  18. hp 4020i and Toshiba cd-roms.
  19.  
  20.  
  21. Copyright, disclaimer & licence:
  22. ================================
  23.  
  24.   Copyright (C) 1996 Dieter Baron and Armin Obersteiner
  25.  
  26.   This program is free software; you can redistribute it and/or modify
  27.   it under the terms of the GNU General Public License as published by
  28.   the Free Software Foundation; either version 2 of the License, or
  29.   (at your option) any later version.
  30.  
  31.   This program is distributed in the hope that it will be useful,
  32.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  33.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  34.   GNU General Public License for more details.
  35.  
  36.   You should have received a copy of the GNU General Public License
  37.   along with this program; if not, write to the Free Software
  38.   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  39.  
  40.  
  41. cdwrite Examples:
  42. =================
  43.  
  44. Write data cd (in emulation mode):
  45.     cdwrite -cveCF -i ISOIMAGE
  46. Write data cd (real write):
  47.     cdwrite -cvwCF -i ISOIMAGE
  48. This closes the session (no more tracks possible) and the disk (no
  49. more sessions possible).
  50.  
  51. Write data cd (new session possible):
  52.     cdwrite -cvwF -i ISOIMAGE
  53.  
  54. Write audio cd (closing disk):
  55.     cdwrite -cvwFC -a TRACKS ...
  56. Audio data are 16 bits 2 channel, 44.1kHz, big endian.
  57.  
  58. Note that an audio track should be a multiple of 2352 bytes in length,
  59. otherwise you might hear a crackle at the end of the track.
  60.  
  61. WARNING: the Toshiba drives send little endian data, so you have to swap
  62. bytes.
  63.  
  64.  
  65. cdda Examples:
  66. ==============
  67.  
  68. Copy first track into TRACKFILE:
  69.     cdda -v CDROM TRACKFILE 1 
  70.  
  71. Copy 30 seconds of second track into TRACKFILE
  72.     cdda -v CDROM TRACKFILE 2 0:30
  73.  
  74.  
  75. Amiga Specific Notes:
  76. =====================
  77.  
  78. This is the first *free* cdwrite program for AmigaDOS. For the source
  79. code have a look at the end of this file.
  80.  
  81. It works on my Amiga 2000-7MB (A2630-2MB), GVP Series II, HP 4020i.
  82. Therefore it *should* work on similar configurations.  I think it may
  83. be possible to write cd's with ANY Amiga (at least single speed).
  84.  
  85. Kickstart 2.04+ is required, but it's possible to downgrade libscsi to
  86. 1.3.  (I've no need for that.)  You further NEED 'ixemul.library'.
  87. (Version 43.1 would be the best.)
  88.  
  89. WARNING: Because of the stupid I/O handling of the Amiga Shell, don't
  90. touch any key during writing -- this stops the write action
  91. immediately!!!!
  92.  
  93. Use `cdwrite -h' and `cdda -h' to get a list of available options,
  94. especially the option to specify which SCSI device to use.
  95.  
  96. See also the section ``Notes on AmigaDOS'' in the libscsi
  97. documentation.
  98.  
  99. Note also that we experienced some difficulties with `cdda' (SCSI bus
  100. hang), but that might well be the controller's fault.
  101.  
  102.  
  103. Contact, Source and Binaries: 
  104. =============================
  105.  
  106. Send bug reports, comments, and additions to
  107.      `bug-libscsi@giga.or.at'.
  108.  
  109. The latest version of the SOURCE can be found on 
  110.         ftp.giga.or.at, /pub/nih/cdtools.tar.gz
  111. or
  112.         http://www.giga.or.at/pub/nih/cdtools.tar.gz
  113.  
  114. The latest version of the Amiga BINARIES can be found on 
  115.     ftp.giga.or.at in /pub/nih/amiga/cdtools-bin.lha
  116. or
  117.     http://www.giga.or.at/pub/nih/amiga/cdtools-bin.lha
  118.