Hello,
I’m developing a MIP SDK’s plugin for a Doorstation and need to be able to replay the Playback recordings. Right now the audio from the Doorstation’s microphone get’s recorded like it should. But I also need to record the operator that’s talking to the Doorstation via a PC Microphone. Would it be able to record this simultaneously with the same AudioPlayerControl I use to record the Doorstation’s audio?
Regards,
Peter
Microphones and Speakers can both be setup to be recorded. The AudioPlayerControl can be used to playback the audio from both. (AudioPlayerControl does not record.)
If your Doorstation device shows up with both a microphone and a speaker in the Management Client, you can configure recording rules and you can use AudioPlayerControl to playback the audio from both.
Thank you for your response Bo.
I’m sorry for the confusion, I use the AudioPlayerControl to playback the audio of course.
It does have both a microphone and speaker. In the Smart Client, I can hear everything from the Doorstation’s microphone when I’m in Playback mode.
But nothing from it’s speakers even though the PC-Microphone was sending data to them.
In the Management Client, it’s set to record both from microphone and speaker. Is there anything else I need to set up that I’m missing?
It should be as easy as replacing the microphone FQID with the speaker FQID on the AudioPlayerControl, but you cannot do both.
virtual FQID VideoOS.Platform.Client.AudioPlayerControl.SpeakerFQID [get][set]
-
Identifies the speaker that is to be listened to in the control.
Only one of MicrophoneFQID and this can be set - not both. Setting both will throw exception.
This property or MicrophoneFQID needs to be set before the Initialize() method is called.
http://doc.developer.milestonesys.com/html/index.html?base=miphelp/class_video_o_s_1_1_platform_1_1_client_1_1_audio_player_control.html&tree=tree_search.html?search=audioplayercontrol
If this does not lead to a solution please show me in a snippet of your code how you intitialize and use the AudioPlayerControl..
So if I’m understanding you correctly. There’s no solution where a conversation between a person at the doorstation, and the operator speaking to the doorstation can be recorded at the same time?
The recording and the use of the AudioPlayerControl has no correlation. So you can record microphone and speaker simultaneously.
When a AudioPlayerControl cannot according to documentation do multiple microphones or speakers and cannot do a microphone and a speaker simultaneously I suggest you try to use two (or multiple) AudioPlayerControl.
I apologize for the late answer. Though I already responded.
Using two AudioPlayerControls solved the problem.