是否可以从一个窗口录制声音?
我已经设法编写程序来录制来自输入设备的声音,但我更感兴趣的是从播放一些声音的一个窗口进行录制。是否可以捕获这些声音而不是当前播放的所有可能的声音?
对不起我的英语。
I've managed to write program to record sound from Input Devices, but I'm more interested in recording from one window that plays some sounds. Is it possible to catch those sounds and not all possible sounds played currently?
Sorry for my english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您想要录制的程序直接与声音驱动程序 API 对话,您唯一的机会是创建一个自己的“中间人”声音驱动程序,它可以过滤掉音频流并将其转发到您的应用程序。
因此,如果您不打算投入大量时间,答案可能是“不,这是不可能的”。
As the program you want to record is talking directly to the sound driver api your only chance would be to create an own "man in the middle" sound driver which could filter off and forward an audio stream to your application.
So if you are not planning to invest a serious amount of time the answer probably is "No, its not possible".