Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Determine when a loud sound is played in C#

Tags:

c#

audio

I want to determine if another program plays a sound above a certain threshold. I am not looking for checking the volume settings on the computer or anything like that. I really just need to see if any app plays something higher then what I am expecting. Anyone know if this is possible or how to do it?

like image 427
Eric Packwood Avatar asked Nov 06 '22 13:11

Eric Packwood


1 Answers

Check out this project on codeproject. It's a volume meter using managed DirectX and written entirely in C#.

like image 174
NG. Avatar answered Nov 15 '22 11:11

NG.