Hi all,
I have a Microsoft USB webcam and I want to record the video/audio stream. I found a very useful C# web camera software but I don't get any audio from the camera's microphone. Here is the code I am trying to employ:
connector.Connect(_camera, _mpeg4Recorder.AudioRecorder); //This does not work
_connector.Connect(_camera, _mpeg4Recorder.VideoRecorder);
Can you help me with this issue I am pretty clueless here
Leon DunnPosted Feb 26, 2015, 9:27 AM
Thanks for the answer! In the meanwhile I could solve this. I made a mistake in the code. The point is that I tried to connect the camera to the mpeg4Recorder.AudioRecorder, but the microphone should be connected to it.
connector.Connect(_microphone,_mpeg4Recorder.AudioRecorder); //This is the good code, now it works:)
AlysePosted Feb 26, 2015, 2:07 AM