使用2个声卡
我需要使用声卡“A”播放声音,同时使用声卡“B”录制另一个声音。我知道如何播放或录制声音(使用 PyAudio),但我不知道如何选择使用哪个声卡。我的印象是 PyAudio 不允许选择声卡,但我可能是错的(我是 Python 的初学者)。
I need to play a sound with sound card "A", while recording another sound using sound card "B". I know how to play or record a sound (using PyAudio), but I don't know how to choose which sound card to use for it. I have the impression that PyAudio doesn't allow choosing the sound card, but I might be wrong (I'm a beginner at Python).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 PortAudio,PyAudio 的 C 包包装,具有选择声卡的能力。
PortAudio 具有参数/方法 PaDeviceIndex、Pa_getdeviceCount() 和 PaUseHostAPISpecificDeviceSpecification。
由于某种原因,PyAudio 不包装这些参数/方法。
It appears that PortAudio, the C package that PyAudio wraps, has the ability to choose a sound card.
PortAudio has the parameters / methods PaDeviceIndex, Pa_getdeviceCount(), and PaUseHostAPISpecificDeviceSpecification.
For some reason, PyAudio does not wrap those parameters / methods.