⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test-script

📁 Windows NT声卡驱动VXD
💻
字号:
#!/bin/tcshecho welcome to the test.echo ""echo Please start the server, esd, in another terminal.echo You should hear a series of ascending tones.echo press enter to continue...echo $< >& /dev/null#####################################################################echo ""echo Test "#1": esdcatecho -----------------echo This test should play a sound to the server.echo press enter to continue...echo $< >& /dev/nullesdcat -b -m -r 11025 test.wav#####################################################################echo ""echo Test "#2": esdcatecho -----------------echo This test should play the same sound twice as fast.echo press enter to continue...echo $< >& /dev/nullesdcat -b -m -r 22050 test.wav#####################################################################echo ""echo Test "#3": esdmonecho -----------------echo This first part of this test should monitor the soundecho to a temporary file.  The second part of the test echo should play it back identical to the original.echo press enter to continue...echo $< >& /dev/nullesdmon > sample.raw &esdcat -b -m -r 11025 test.wavsleep 3killall esdmonecho press enter to continue...echo $< >& /dev/nullesdcat sample.rawrm -f sample.raw#####################################################################echo ""echo Test "#4": esdrececho -----------------echo This part of this test connects the audio inputecho to the speaker.  You should hear that signalecho echoed to the speaker.echo press enter to continue...echo $< >& /dev/nullesdrec | esdcat &echo press enter when you are done...echo $< >& /dev/nullkillall esdrec#####################################################################echo ""echo Test "#5": esdctlecho -----------------if ( $?ESPEAKER ) thenecho This part of the test does not yet workecho properly with the ESPEAKER variable setecho and will be bypassed.echo press enter to continue...echo $< >& /dev/nullelseecho This part of this test confirms the controlecho signals are operational.  you should seeecho the messages locked, unlocked, standby, echo and resume, on the server terminal.echo press enter to continue...echo $< >& /dev/nullesdctl unlock lock standby resumeendif#####################################################################echo ""echo Test "#6": esdsampleecho --------------------echo This part of this test confirms the sampleecho functionality is operational.  Follow theecho directions presented.echo press enter to continue...echo $< >& /dev/nullesdsample -b -m -r 11025 test.wav#####################################################################echo ""echo Test "#7": esdlooopecho -------------------echo This part of this test confirms the loopingecho functionality is operational.  Follow theecho directions presented.echo press enter to continue...echo $< >& /dev/nullesdloop -b -m -r 11025 test.wav#####################################################################echo ""echo Test concluded.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -