我希望能够输出自定义声音MP3的应用程序,如chatroulette。我可以做一个‘虚拟麦克风’,然后在chatroulette中选择它(就像iso是一个虚拟光驱)。或者通过使用NAudio将mp3输出到波入。
这似乎不起作用(就像在编译和执行中一样,但录音器不显示任何声音)。
Dim DSO As New DirectSoundOut(DirectSoundOut.DSDEVID_DefaultCapture)
Dim mp3 As WaveStream = New Mp3FileReader("D:\Muziek\Irish rebel songs\Athenrye - The armagh sniper.mp3")
DSO.Init(mp3)
DSO.Play()发布于 2011-07-26 16:32:39
更新抱歉,误解了您的意图。不幸的是,您不能使用DirectSound播放捕获设备。
https://stackoverflow.com/questions/6819724
复制相似问题