microsoft-graph-comms-samples icon indicating copy to clipboard operation
microsoft-graph-comms-samples copied to clipboard

Microsoft Graph Communications Samples

Results 193 microsoft-graph-comms-samples issues
Sort by recently updated
recently updated
newest added

Hello, we are using CommsSerializer to deserialize notifications for compliance recording bot. This method however can take up to a few seconds. Can we do something to reduce this time...

**Describe the issue** hello! I would like some help with this, because when I have a group call, the bot joins correctly. After we all leave the call, echobot remains...

We want to get the video frame of each participants, but then we try to suscribe to the video socket we have the following error > Error in Subscribe >...

I would like to focus your attention on [Record Response API](https://docs.microsoft.com/en-us/graph/api/call-record?view=graph-rest-1.0&tabs=http) This API sends us callback notification with Recording Location URL and Recording Access Token on the following cases: 1....

I would record a call on teams using Graph API. As mentionned in [documentation](https://docs.microsoft.com/en-us/graph/api/call-record?view=graph-rest-beta) . I make a request ``` POST https://graph.microsoft.com/beta/app/calls/{id}/record Content-Type: application/json Content-Length: 394 { "bargeInAllowed": true, "clientContext":...

I am facing below error after running the PolicyRecordingBot locally: TraceSource Error: 0 : [SkypeBotsMediaPlatform][AppId:55de836f-248c-4d26-822c-405080517ecc] MediaPerf is not registered: no key found at SYSTEM\CurrentControlSet\Services\MediaPerf\Performance I can not find the SYSTEM\CurrentControlSet\Services\MediaPerf\Performance,...

PolicyRecordingBot receives H264 frames (`Buffer.Data`) and some metadata related to them like `Timestamp`. This data can be read from `VideoMediaReceivedEventArgs` object. As I understand, those frames are inter-frame compressed. Also,...

**Describe the issue** https://github.com/microsoftgraph/microsoft-graph-comms-samples/blob/master/Samples/V1.0Samples/LocalMediaSamples/PolicyRecordingBot/README.md **Code Snippet** ``` private void OnVideoMediaReceived(object sender, AudioMediaReceivedEventArgs e) { this.GraphLogger.Info($"[{e.SocketId}]: Received Video: [VideoMediaReceivedEventArgs(Data=, Length={e.Buffer.Length}, Timestamp={e.Buffer.Timestamp}, Width={e.Buffer.VideoFormat.Width}, Height={e.Buffer.VideoFormat.Height}, ColorFormat={e.Buffer.VideoFormat.VideoColorFormat}, FrameRate={e.Buffer.VideoFormat.FrameRate})]"); // TBD: Policy Recording bots can...

Hello, I'm trying to get my bot into a meeting. I get all status working fine, when it comes to actually join, it fails. The Bot Call status goes from...