home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / useful / mus / play / play16 / product-info < prev   
Text File  |  1995-08-25  |  3KB  |  97 lines

  1. .name
  2. Play16
  3. .aminet-dir
  4. mus/play
  5. .short
  6. Plays WAV, IFF, MAUD, etc, 14 bit output
  7. .description
  8. Basically, Play16 is capable of playing uncompressed and _some_ compressed
  9. soundfiles through Amiga's standard audio device or an increasing number of
  10. alternative devices. If the actual resolution or playback rate exceeds that
  11. of the Amiga hardware, realtime conversion is done so that the sound is
  12. being played back correctly.
  13.  
  14. You can even play 16 bit / 44.1 kHz sounds, providing all parts of
  15. your system can keep up with the high data transfer rate and lots
  16. of calculations needed for this task. (In this case an accelerated
  17. Amiga is recommended :-)
  18.  
  19. The two audio channels at each side can be linked to perform as a single
  20. 14 bit channel. Again, this swallows lots of computing power.
  21.  
  22. Anyway, my Amiga 3000-16MHz is fast enough to play an uncompressed soundfile
  23. with full 44.1kHz/14bit output (productivity) directly from harddisk !!!
  24.  
  25. I don't want Play16 to be a program that plays each and every exotic format
  26. that exists somewhere. However, I intend to support as many popular file
  27. types as possible.
  28.  
  29. Features in brief
  30. -----------------
  31.  - autodetects and plays several soundfiles, up to 16 bit / 56 kHz / stereo
  32.  - full Workbench support (but not Intuition and no GUI)
  33.  - always correct playback speed, even for sounds >28 kHz
  34.  - realtime playback from harddisk, optimized assembler routines
  35.  - optional 14 bit output (less noise but not as good as true 16 bit)
  36.  - automatic or manual audio filter control
  37.  - plays mono sounds on *both* channels, not only on the left one
  38.  - plays (and loops) files that are larger than memory
  39.  - preloading for exactly timed start of playback
  40.  - fast uLaw decompression
  41.  - system friendly audio channel allocation
  42.  - optionally dump the output into a file (can be used to convert sounds)
  43.  - supported Filetypes are:
  44.  
  45.    * Microsoft RIFF-WAVE  (.WAV)  mono / stereo, 8 / 16 bit, linear / uLaw
  46.    * Creative Voice File  (.VOC)  mono / stereo, 8 / 16 bit, linear
  47.    * Sun/NeXT Audio       (.AU)   mono / stereo, 8 / 16 bit, linear / uLaw
  48.    * MacroSystem MAUD     (.MAUD) mono / stereo, 8 / 16 bit, linear / uLaw
  49.    * Apple/SGI/Amiga AIFF (.AIFF) mono / stereo, 8 / 16 bit, linear
  50.    * Amiga IFF-8SVX       (.IFF)  mono / stereo, 8      bit, linear / FibDelta
  51.    * Any raw sound data as long as it matches one of the following:
  52.      -  8 bit signed
  53.      -  8 bit unsigned
  54.      - 16 bit signed, Intel format    (LSB first)
  55.      - 16 bit signed, Motorola format (MSB first)
  56.  
  57.     - supported output devices are:
  58.  
  59.    * Native Amiga chipset (Paula)  8 bit
  60.    * Native Amiga chipset (Paula) 14 bit
  61.    * Native Amiga chipset (Paula) 14 bit calibrated (Christian Buchner)
  62.    * MacroSystem Maestro Pro      16 bit 44.1kHz and 48kHz only
  63.    * IFF-8SVX file dump            8 bit
  64. .version
  65. 1.5
  66. .date
  67. 1995.07.02
  68. .author
  69. Thomas Wenzel
  70. .described-by
  71. Fred Fish (fnf@amigalib.com)
  72. .distribution
  73. Copyrighted but freely redistributable.
  74. .email
  75. wenzel@unixserv.rz.fh-hannover.de
  76. .execute
  77. LAB start
  78. set choice `RequestChoice "Play16" "Please select an option" "ReadMe" "English Docs" "Deutsch Docs" "Run" "Cancel"`
  79. if $choice GT "0"
  80.   if $choice EQ "1"
  81.     MetaTool Play16.ReadMe TEXT
  82.   else
  83.     if $choice EQ "2"
  84.       MetaTool Play16.doc TEXT
  85.     else
  86.       if $choice EQ "3"
  87.         MetaTool Play16.dok TEXT
  88.       else
  89.         if $choice EQ "4"
  90.           WBRun Play16
  91.         endif
  92.       endif
  93.     endif
  94.   endif
  95.   skip start BACK
  96. endif
  97.