home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / Amiga / multimedia / audio / QuickSampV15.readme < prev    next >
Text File  |  1997-09-10  |  5KB  |  107 lines

  1. Short:    NEW and FAST CD-Sampling utility
  2. Author:   Mario Kubek
  3. Uploader: Martin Schulze <schulze@phil.uni-sb.de>
  4. Type:     disk/cdrom
  5.  
  6. QUICKSAMPLER is Copyright ⌐ 1996/1997 by Mario Kubek.
  7. All rights reserved!
  8. QUICKSAMPLER is Freeware!
  9.  
  10. QUICKSAMPLER is a program for reading digital audio data (CDDA) out
  11. of CD-ROM drives, which are capable of sending digital audio data
  12. (16 Bit) over the SCSI bus.
  13. This data can be saved in a file to a disk.
  14. This version works with TOSHIBA drives.
  15.  
  16. Kickstart 3.0 is required, but it should also work with Kickstart 2.xx
  17. (not tested).
  18.  
  19. This is version 1.5!
  20.  
  21. Features:
  22.  
  23. QUICKSAMPLER V1.0 can/does...
  24.  
  25. ...save CDDA data (whole songs or part of songs) to a file in a very
  26.    FAST way.
  27. ...save the audio data in the fileformats: CDR, RAW, 8SVX
  28. ...convert the CDDA data to following samplerates: 44100 (44.1 kHz),
  29.    22050 (22.05 kHz), 14700 (14.70 kHz), 11025 (11.025 kHz)
  30. ...change the byte order (MSB [Motorola format] at first or LSB [Intel
  31.    fromat] at first) when saving 16bit data.
  32. ...change the audio channels in the file: STEREO, CHANGE STEREO
  33.    CHANNELSIDE (what you normally hear on the left speaker of the CD
  34.    is the right channel in the file and what you hear on the right
  35.    speaker is the left channel in the file), LEFT ON BOTH CHANNELS
  36.    (what you can hear on the left channel on a CD is what you get
  37.    on both channels in the file, the right one has no influence), RIGHT
  38.    ON BOTH CHANNELS (what you hear on the right channel on a CD is what
  39.    you get on both channels in the file, the left one has no influence),
  40.    MONO (the left and the right channel are summed up and devided by 2),
  41.    MONO_LEFT (you will get only the left channel in the output file),
  42.    MONO_RIGHT (you will get only the right channel in the output file).
  43. ...offer you a good looking process bar.
  44. ...tell you using the GUI how many bytes will have the output file.
  45. ...check before writing to disk, if there is still enough place.
  46.    Imagine you want to create a file, which is bigger than the available
  47.    free space on the disk. Then QUICKSAMPLER creates the audio file, sets
  48.    it's size, which is calculated with help of intern routines. During this
  49.    process it can happen that the end of the disk is reached. In this
  50.    case QUICKSAMPLER closes and deletes the file, because it does not
  51.    make sense to write to a file, which wouldn't contain all the data
  52.    you wanted to have in it. Some other programs do not check the free
  53.    diskspace. They simply write the audio data to the file after they
  54.    have created it. So it could happen that during the writing process
  55.    (lets say 1 or 2 minutes later) the end of the disk is reached.
  56.    What now? The user loses time and audio data, which should be in the
  57.    file.
  58. ...not waste ram-memory. The allocated memory is determined using
  59.    the WB-tooltype "BUFBLOCKS" or with the CLI-Argument "BUBLOCKS".
  60.    BUFBLOCKS can be a number between 0 and 65. The smaller the number
  61.    is, the smaller is the allocated memory and QUICKSAMPLER must read
  62.    from the CD more often. The bigger the number is, the bigger is
  63.    the allocated memory and QUICKSAMPLER must read from the CD less
  64.    often. Default number is 32. There are 3 buffers that have to be
  65.    allocated. The sizes of them are calculated with the formula
  66.    (BUFBLOCKS*2352/a_number_between_1_and_17) or
  67.    (BUFBLOCKS*2352*2) when data in RAW 16bit STEREO 44.1 kHz are changed
  68.    (CHANNEL processing) and saved. Actually during the reading and
  69.    writing process only 2 buffers are used. Which buffer is used
  70.    depends on the fileformat of the output-file.
  71. ...offer you a fast reading and writing routine (also for STEREO 8SVX).
  72.    It is not so compulsory to write such a routine as you might think of.
  73.  
  74.  
  75. This is version 1.5.
  76.  
  77. It includes...
  78.  
  79. ...a speed increased reading and writing routine.
  80.  
  81. ...a check, in which a routine determines automatically if there is
  82.    a CD in drive or even not (with the help of the timer.device).
  83.    In the previous version this check was performed using
  84.    IntuiMessages. But if your CD drive was not mounted, the program
  85.    could not receive an IDCMP_DISKINSERTED or IDCMP_DISKREMOVED
  86.    message. And if you have inserted or removed a CD, QUICKSAMPLER
  87.    could not recognize this diskchange and the display was not
  88.    updated with the data of another CD or it was not cleared if
  89.    no CD was inserted. Because of that you had to quit and restart
  90.    the program to make the diskchange visible.
  91.    This problem is now fixed. Now every 2 seconds the program
  92.    checks if there is a CD in drive or not.
  93.  
  94. ...the default-"device"-name "squirrelscsi.device", because in the
  95.    last version the predefined name "1230scsi.device" caused an 
  96.    error, which was the reason for the little fragment "ice", which
  97.    appeared, when you wanted to switch to 14700 Hz with the help of 
  98.    the Cycle-Gadget "FREQ". Somehow MaxonC++ has put the last part 
  99.    of the string "1230scsi.device", which is "ice", into textfield 
  100.    of the "FREQ"-Gadget, which should show "14700".
  101.    This is not a programming-mistake, but surely a compiler-bug,
  102.    because with the now intern used string "squirrelscsi.device"
  103.    this error did not appear any longer.
  104.    This problem is now fixed.
  105.  
  106. ...several intern improvements.
  107.