Reputation: 31803
If I have an app that plays sounds. It seems like a good idea to indicate why the user isn't hearing the sounds. Is there a way to detect system volume or MUTE?
Upvotes: 10
Views: 1863
Reputation: 283624
Yes.
MediaControl.SoundLevel
for Windows 8SystemMediaTransportControls.SoundLevel
for Windows 8.1 and laterMusic and media capture apps should monitor the SoundLevel to determine whether the audio streams on the app have been Muted.
Upvotes: 8
Reputation: 8852
I think you can use Windows.Media
namespace. Also these is SoundLevel
enum.
Also
Upvotes: 0