Question

Is this possible using only C#? I want to be able to detect audio from: a stream, microphone or soundcard and begin recording if audio level is above a settable threshold.

Thanks :-)

Was it helpful?

Solution

you can do this using NAudio. Have a look at the .NET Voice Recorder application for an example of detecting the input level. To detect audio from a stream, you would need to create a class derived from WaveStream and override its Read method to return the data from your TcpListener

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top