home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sound Sensations!
/
sound_sensations.iso
/
misc
/
srs
/
srsplay.bat
< prev
next >
Wrap
DOS Batch File
|
1991-07-19
|
668b
|
33 lines
@echo off
if "%debug%" == "yes" echo on
if "%1" == "" goto syntax
if not exist %1 goto nofile
if "%2" == "" goto samplerate
if "%3" == "" goto channels
playfile %1 %2 %3
goto quit
:samplerate
playfile %1 11025 1
goto quit
:channels
playfile %1 %2 1
goto quit
:nofile
echo %0 error: file not found: %1
goto quit
:syntax
echo Syntax: %0 sndfile [samplerate [channels]]
echo This program is used by srs to call the "play" program
echo supplied by your sound board. More than likely, this file
echo needs to be edited. The call to the program "playfile"
echo should be changed to the name of the program you have.
goto quit
:quit