05-16-2022 09:22 AM - edited 05-17-2022 12:17 AM
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
Solved! Go to Solution.
05-17-2022 11:31 PM
AFAIK this is not yet supported. You may submit a feature request here: https://ciscocollabcustomer.ideas.aha.io/ for product management to review.
05-18-2022 05:48 AM
@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
05-18-2022 05:48 AM
@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
05-19-2022 06:45 AM
Thanks a lot for the response and the link!
05-17-2022 11:31 PM
AFAIK this is not yet supported. You may submit a feature request here: https://ciscocollabcustomer.ideas.aha.io/ for product management to review.
09-16-2022 11:32 AM
@Rudrakshi this feature is still not supported?
05-19-2022 06:47 AM
Thank you Rudrakshi. Yeah, it seems that currently there is no support for this requirement. But thanks anyway. I will submit a feature request.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide