Reputation: 39
Windows Volume Mixer shows audio output for individual applications.
Using NAudio, what is the right way for me to tap into this information? I essentially want to be able to make my application say:
Thanks for the help!
Upvotes: 1
Views: 596
Reputation: 49522
Windows won't let you capture audio from individual applications. You can use NAudio's WasapiLoopbackCapture
to capture audio from all applications.
If you just want to see audio output levels for all apps, that can be achieved with the IMMDevice APIs which NAudio has wrappers for. It doesn't come with a specific demo showing that, but there's another open source project, EarTrumpet that you could explore to see how its done.
Upvotes: 2