home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_10 / 5_TO_5.ZIP / README < prev   
Text File  |  1993-04-12  |  5KB  |  183 lines

  1.  
  2. FIVE TO FIVE V0.9
  3.  
  4. by Harald Schönfeld and Bernd Spellenberg
  5.  
  6. 4/12/93
  7.  
  8.  
  9. 525 coverts sound samples from/into different formats:
  10.  
  11. - DVSM (Falcon)
  12. - AVR (ATARI)
  13. - SND, AU (Sun, Mac, NeXT)
  14. - WAV (PC)
  15. - raw data
  16.  
  17. This program uses the conversion routines of FORTUNE V1.0 that works only on
  18. computers of the FALCON series and is even able to play these sounds in
  19. real time from hard disk.
  20.  
  21. This program is Public Domain in this version. It may and shall be copied
  22. and spread under the condition that all program- and text- files of this
  23. archive are included.
  24.  
  25.  
  26.  
  27. 1. System requirements
  28.  
  29. 525 runs on all computers of the 680x0 series, no matter if MultiTOS is
  30. installed or not. 525 needs about 160 KB free RAM.
  31.  
  32.  
  33.  
  34. 2. Installation
  35.  
  36. Copy the program (525G.PRG=german, 525E.PRG=english) onto your
  37. harddisk.
  38.  
  39.  
  40.  
  41. 3. Usage
  42.  
  43. After the program starts the 525 menu appears. There are the following
  44. menu items:
  45.  
  46.  
  47. Desk/about Five to Five...
  48.  
  49. Informs about the current version number.
  50.  
  51.  
  52.  
  53. File/Convert...
  54.  
  55. Here you can select samples for conversion and choose a new file format.
  56.  
  57. To select an import file click on the PopUp "Import Sample".
  58.  
  59. If 525 is unable to recognize any header, a dialog appears, where you can 
  60. select the format of the sample to load:
  61. - The frequency
  62. - The pack/data format
  63. - The number format: Signed or unsigned
  64. many old ST samples are 8 Bit Mono unsigned.
  65.  
  66. "Info" shows informations about the current input file. Please pay attention
  67. to the fact that length is the length of the raw sound data without any
  68. headers.
  69.  
  70. "Select sample format"
  71.  
  72. 525 can read and write samples in 5 different formats:
  73. - DVSM: For Fortune and WinRec
  74. - AVR: Many ATARI St/Falcon Programs
  75. - SND: Sun, NeXT, Mac
  76. - WAV: PC
  77. - Raw data: Raw data for many programs
  78.  
  79. "Data reduction"
  80.  
  81. You can choose in which pack format the samples sould be exported. Basically
  82. the following formats are possible (not all are implemented in every case):
  83.  
  84. - Keep: the sound data will not be changed.
  85. - 16 Bit Stereo: save in 2 channels with 16 Bit each.
  86. - 16 Bit deltapack: save as logarithmic compressed data, that needs 50%
  87. less memory but sounds nearly like 16 Bit.
  88. - 16 Bit µ-LAW: Only needs 8 Bit, sounds better than 8 Bit, but worse than
  89. deltapack. Used on Sun and NeXT.
  90. - 8 Bit Stereo
  91. - 16 Bit Mono: if stereo data should be saved as mono, both channels are
  92. added together.
  93. - 16 Bit Mono deltapack
  94. - 16 Bit Mono µ-LAW
  95. - 8 Bit Mono: Better use deltapack!
  96.  
  97. Notice that it is almost useless to convert a worse format to a better one.
  98. It only requires more memory but sounds the same. But it is possible that
  99. other programms support only some formats.
  100. Converting µ-LAW to deltapack can result in slightly worse sound quality,
  101. although deltapack is the better format.
  102. "Keep" does not always really keep the pack format because not every format
  103. is supported in every file format. In this case the sample will be converted
  104. to the next better pack format.
  105.  
  106. Save options
  107.  
  108. When saving samples, 525 can maximize the volume of the sample.
  109.  
  110. You can select a fade in/out effect, too, which ranges over the first and
  111. last 0.2 seconds of the selected part of the sample. You should use this
  112. effect only once with the same sample. This effect can not be heard until
  113. the sample is saved and reloaded.
  114.  
  115. "Export" converts the sample. A file select box will be opened to enter
  116. the destination file name.
  117.  
  118. If import and export sample have the same name, a temporary file will be
  119. created on the harddisk. Therefore it is possible that the data could not be
  120. saved even if there should be enough space on the disk.
  121.  
  122.  
  123. File/Quit
  124.  
  125. Terminates the program.
  126.  
  127.  
  128.  
  129. 4. Internals
  130.  
  131. One supported sample format is the DVSM-Format of the programs "WINREC" and
  132. "FORTUNE". Those are programs for the ATARI FALCON.
  133.  
  134. A DVSM sample file has the following structure:
  135.  
  136. typedef struct
  137. {
  138.     char magic[6];     /* "DVSM" */
  139.     int headlen;       /* Headlen in Bytes*/
  140.     int freq;           /* Sample freqency 0=8kHz 7=50kHz*/
  141.     char pack;           /* 0 unpacked, 2=DVS packmethod (not yet supported)*/
  142.     char mode;         /* 0=Stereo 8Bit,1=Stereo 16Bit,2=Mono 8Bit*/
  143.     long blocklen;     /* if pack=1: Length of a packed block*/ 
  144. } DVSMHEAD;
  145.  
  146. followed by the 16 Bit stereo data (or DVS 8 Bit data).
  147.  
  148. The sample frequencies 0 to 7 correspond to the following frequencies:
  149. sam_freq[8]={8195,9834,12292,16490,20770,24585,33880,49170};
  150. For further information refer to the WinRec documentation.
  151.  
  152.  
  153.  
  154. 5. Known Bugs
  155.  
  156. None - at the moment ;-)
  157.  
  158.  
  159.  
  160. 6. Contact
  161.  
  162. Send suggestions, criticism, comments, bug reports and nice cites (esp.
  163. suggestions and information about compression methods and file formats) to:
  164.  
  165. Harald Schönfeld
  166. Email:
  167. mppi76@cd4680fs.rrze.uni-erlangen.dbp.de
  168. Postal:
  169. Lerchenstrasse 2, D-W-8501 Veitsbronn, Germany
  170.  
  171. Bernd Spellenberg
  172. Email:
  173. mppi04@cd4680fs.rrze.uni-erlangen.dbp.de
  174. Postal:
  175. Fuerther Strasse 11, D-W-8501 Puschendorf, Germany
  176.  
  177.  
  178.  
  179. 7. Release History
  180.  
  181. 4/12/93: Version 0.9
  182.  
  183.