views:

114

answers:

1

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 :-)

A: 

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

Mark Heath