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

Is it possible to increase the video socket limit?

Open brynrichards opened this issue 1 year ago • 3 comments

Would it be possible to increase the video socket limit from 10?

The CPU overhead is not a concern for my use case.

brynrichards avatar May 26 '23 12:05 brynrichards

@brynrichards No, the limit is 10 VideoSockets for main (webcam) video per bot call session. May I ask what is your intended use case that would require more? How many VideoSockets would your scenario typically require? Thanks.

ssulzer avatar Jun 02 '23 05:06 ssulzer

@ssulzer thanks for confirming.

We have a 3d immersive events environment where we display > 100 participant web cams received via WebRTC using a browser, with the H264 being decoded on a GPU. We would like to be able to let participants join an event via teams, and I've been able to forward 10 incoming H264 video streams directly from the bot with low overhead, however if there's a hard limit of 10 I think I would need to have some sort of coordination layer and multiple instances of the bot joining and subscribing to different streams.

brynrichards avatar Jun 08 '23 08:06 brynrichards

@brynrichards Not sure if your use case would be covered by this, but you could also operate a single instance that subscribes and unsubscribes based on who is talking in the meeting and keep to the limit of 10, just like the Teams client does for example.

InDieTasten avatar Jul 10 '23 01:07 InDieTasten