home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / misc / srs / srsplay.bat < prev    next >
DOS Batch File  |  1991-07-19  |  668b  |  33 lines

  1. @echo off
  2. if "%debug%" == "yes" echo on
  3.  
  4. if "%1" == "" goto syntax
  5. if not exist %1 goto nofile
  6. if "%2" == "" goto samplerate
  7. if "%3" == "" goto channels
  8.  
  9. playfile %1 %2 %3
  10. goto quit
  11.  
  12. :samplerate
  13. playfile %1 11025 1
  14. goto quit
  15.  
  16. :channels
  17. playfile %1 %2 1
  18. goto quit
  19.  
  20. :nofile
  21. echo %0 error: file not found: %1
  22. goto quit
  23.  
  24. :syntax
  25. echo Syntax: %0 sndfile [samplerate [channels]]
  26. echo This program is used by srs to call the "play" program
  27. echo supplied by your sound board.  More than likely, this file
  28. echo needs to be edited.  The call to the program "playfile" 
  29. echo should be changed to the name of the program you have.
  30. goto quit
  31.  
  32. :quit
  33.