Hi there,
I'm trying to build an audio/video conferencing system in C#.NET using a Videocamera (P3215-VE Network Camera), an Audio Module with a mic connected to it (P8221 I/O Audio Module) and a speaker (C1004-E). Up to now I have successfully implemented a way to view the video stream from the Camera in my GUI using the AXIS Media Control SDK, but I have no idea how to send an audio stream from the mic to the speakers.
I have tried using VAPIX to capture the audio through a GET request (
http://AudioModuleIP/axis-cgi/audio/receive.cgi) and then listen to the recorded stream with a POST method (
http://SpeakersIP/axis-cgi/audio/transmit.cgi) but it doesn't work. I've also tried using the AMC with the following comands: axAxisMediaControl1.AudioTransmitURL and axAxisMediaControl1.AudioTransmitStart(), but again unsuccessfully. Is it because AMC only works with cameras or bc I'm doing something wrong?
My idea is to be able to send audio to the speakers (from the Audio Module or from my PC) by pushing a button in the application. Does anyone know how to implement this?