cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
906
Views
25
Helpful
5
Replies

Customized view for each participant's video stream

mesrbn
Level 1
Level 1

Hi,

 

I wonder if there is a way to customize each remote participant's video view. For this, I need to get individual video/audio remote participants' media streams to be able to position each one the way I like. In the sample demo code where we subscribe on it like the following: 

 

meeting.on('media:ready', (media) => {
if (media.type === 'local') {
(document.getElementById('self-view')).srcObject = media.stream;
}
if (media.type === 'remoteVideo') {
(document.getElementById('remote-view-video')).srcObject = media.stream;
}
if (media.type === 'remoteAudio') {
(document.getElementById('remote-view-audio')).srcObject = media.stream;
}
});

I have no control over each participant's video stream individually. 

 

Thanks a lot to the great team and community!

 

Best regards

Mehran

2 Accepted Solutions

Rudrakshi
Cisco Employee
Cisco Employee

AFAIK this is not yet supported. You may submit a feature request here: https://ciscocollabcustomer.ideas.aha.io/ for product management to review.



Best regards,
Rudrakshi Srivastava

View solution in original post

Janos Benyovszki
Cisco Employee
Cisco Employee

@mesrbn  In addition to the above please check the changeVideoLayout() function, which will enable you to show different layouts for your meetings. It will still not enable you to individually control all the streams, but it can enhance your meeting experience. A blog post about it can be found here https://developer.webex.com/blog/new-webex-sdk-updates-advanced-meeting-demo

View solution in original post

5 Replies 5

Janos Benyovszki
Cisco Employee
Cisco Employee

@mesrbn  In addition to the above please check the changeVideoLayout() function, which will enable you to show different layouts for your meetings. It will still not enable you to individually control all the streams, but it can enhance your meeting experience. A blog post about it can be found here https://developer.webex.com/blog/new-webex-sdk-updates-advanced-meeting-demo

Thanks a lot for the response and the link!

Rudrakshi
Cisco Employee
Cisco Employee

AFAIK this is not yet supported. You may submit a feature request here: https://ciscocollabcustomer.ideas.aha.io/ for product management to review.



Best regards,
Rudrakshi Srivastava

@Rudrakshi this feature is still not supported? 

Thank you Rudrakshi. Yeah, it seems that currently there is no support for this requirement. But thanks anyway. I will submit a feature request.