Is it possible to capture the rendering audio session from another process?

后端 未结 1 1285

I am taking my first dives in to the WASAPI system of windows and I do not know if what I want is even possible with the windows API.

I am attempting to write progra

相关标签:
1条回答
  • 2020-12-04 01:06

    The mixing takes place inside the API (WASAPI) and you don't have access to buffers of other audio clients, esp. that they don't exist in the context of the current process in first place. Perhaps one's best (not so good, but there are no better alternatives) way would be to hook the API calls and intercept data on its way to WASAPI, if the task in question permits dirty tricks like this.

    0 讨论(0)
提交回复
热议问题