Reputation: 251
My requirement is to capture whatever (audio)is playing on client machine and send it to server as live streaming. On windows 7 i am banging my head on WASAPI Loopback for this purpose. But that is not supported in windows XP. Do anyone has idea how it can be done in Windows Xp?
Upvotes: 2
Views: 2060
Reputation: 49482
Windows XP does not provide built-in support for loopback capture. Your can only do it if your soundcard has a "what you hear" option that can be selected for recording. If not, then you would need to use a specially created sound card driver that allows you to intercept the audio being sent to it, and passes it on to your real soundcard. There are a few commercial products that do this (such as Virtual Audio Cable)
Upvotes: 0
Reputation: 13931
You can use DirectX.
Take look at this: capturing sound and more with Managed DirectX (MDX) 1.1
Upvotes: 1