Domanda

I know i can save my conversation from the Lync Client (see this link),

But can i save it from Lync SDK i am looking for method that simulate the Start Recording button in Lync client i am looking for something like this code:

conversation.BeginStartRecord();

or at least configure the server to automatically record any meeting?

In Streaming servers the streaming can sutomaticaly saved into the streaming server, so what is the case with Lync?

Did anyone go throw this?

È stato utile?

Soluzione

Finally find the answer in microsoft forums here:

You cannot record with the Lync SDK, but you can record calls from a UCMA endpoint. You can create a conference that includes the UCMA endpoint and the other Lync clients, and then record the conference with the UCMA endpoint.

So the answer is no can't record all the conversation (audio and video), their is a work around using UCMA endpoint to record audio only. I think they should add this feature to the SDK.

Update

if anyone have same issue please vote by adding a comment in microsoft lync forum here to add it.

Altri suggerimenti

Recorder (QuickStart) Prerequisites Microsoft Lync Server 2013. One user capable of sending and receiving audio calls. The credentials for the user, and a client capable of signing in to Lync Server 2013. A client signed in to Lync Server 2013.

Only still audio calls are capable of being recorded? because i see in code:

 using Microsoft.Rtc.Collaboration.AudioVideo;

or

   // Create AudioVideoFlow
    AudioVideoFlowHelper audioVideoFlowHelper = new AudioVideoFlowHelper();
    _audioVideoFlow = audioVideoFlowHelper.CreateAudioVideoFlow(
        null,
        audioVideoFlow_StateChanged);

You must handle it in the async way that's mean you should use BeginStartRecord(); and EndStartRecord();

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top