Max resolution i m getting in android meeting SDK is 640*360 even the video is pinned .. while the same meeting I m getting 1280*720 resolution in the official zoom app
Also there is problem like whenever I have more than 4 videos pinning the video does not work it doesn’t improve quality of video to 720P
And When there are more than four videos, the quality drops to below 360p—even for pinned videos. We understand that gallery view quality decreases when there are more than four videos, but even after pinning, the video quality remains the same as in gallery view
After extensive testing, I confirmed that the default UI SDK functions correctly. However, the Custom UI SDK has the following issues:
Video Quality Stays at 640x360 with Four Videos
When four videos are displayed, the video quality remains at 640x360. Pinning a video should increase its quality to 1080x720, but this does not occur. Observation: Minimizing and reopening the app changes the video quality to 1080x720, but a random video is pinned and upgraded instead of the user-selected pinned video.
Video Quality Drops to 320x180 with More Than Four Videos
When more than four videos are played, the quality of all videos drops to 320x180. Pinning a video does not improve its quality to the expected 1280x720, exhibiting the same issue as above.
**Core Issue: While the quality drop to 320x180 with more than four videos is expected, the pinned video’s quality should improve to 1280x720, which is not happening,
inshort i can confirm that there is bug in CUSTOM UI SDK user not able to pin the video,
i used latest android sdk
android device : oneplus nord
i have pro plan that support 720P******
i can provide video of the bug if you need for better understanding.
thankyou waiting for resolution ASAP .
Hi @Riddhi From the looks of the video, it looks like the issue is the ability for your SDK to receive 720p from your desktop client video stream. I believe this is caused by custom UIs pin not signaling to the meeting server that a video has been pinned, so the server cannot scale up the video resolution. I will check with our engineering team to confirm.
While pinVideo function is not supported, the pinVideo behavior can be implemented on the UI side by manually subscribing to a specific user’s video stream.
Note that video subscription is subject to a total bandwidth limit:
When a 720p stream is present, only one additional 360p stream can be subscribed to.
Without a 720p stream, up to four 360p streams can be subscribed to.
Yes, I’ve already tested the pinVideo method is not work. But the issue is: when there are more than 4 videos in the meeting, pinning any video results in very low quality (like 90p or 180p). That’s the major problem we’re facing.
You mentioned subscribing to a specific user’s video, but in the Meeting SDK there’s no method to tell Zoom that it’s our pinned video.
Currently, what we’re doing is: we get the list of all video users, and if a user clicks on a video, we simply hide the video list and make the clicked video full screen.
Is there any new method or process for properly pinning video? Please let us know!
@Riddhi I think there is confusion when you say you’re “pinning” the video. Is this just terminology to describe a way your orchestrating the video layout in your app or are you using a method from the SDK to “pin” a video?
From your last reply “we get the list of all video users, and if a user clicks on a video, we simply hide the video list and make the clicked video full screen” it sound like the former but I want to be sure before going back to engineering.
@ticorrian.heard hello
Yes, you’re right — by “pinning” I mean we’re just handling the layout manually (hiding other videos and making one fullscreen). The main issue is that when there are more than 4 videos, even the fullscreen video drops to very low resolution.
In the custom UI, videos render at 360p resolution for the initial four videos. Subsequently, the quality of all videos degrades to 90p or 180p.
The primary concern is that, once this degradation occurs, expanding any of the affected videos to fullscreen mode does not improve the resolution, which remains capped at 90p or 180p.