使用2个声卡

发布于 2024-09-08 03:32:08 字数 126 浏览 4 评论 0原文

我需要使用声卡“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过潦 2024-09-15 03:32:08

看来 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文