我正在开发一个可以使用许多输入设备(MIC)录制声音的程序。因此,我可以同时从许多输入设备获取输入。但是,当我用" MCI字符串"没有地方可以指定设备ID。我在这里只使用默认设备ID,使用MCI字符串
Button1.Enabled = False
Button2.Enabled = True
mciSendString("open new type waveaudio alias recsound", "", 0, 0)
mciSendString("record recsound", "", 0, 0)
Label1.Text = "Recording"
还有其他记录声音的方法吗?例如:直接X?
我正在使用VB.Net。非常感谢您的帮助。
谢谢