SDK / stack: Zoom Video SDK Web v2.1.10 (WebRTC) in a Next.js 15 app.
My goal is to make each participant’s video completely fill whatever container we give it (no black bars), even when the container’s aspect ratio ≠ 16 : 9. Ideally this would work the same way object-fit: cover; works on a normal <video>
tag.
Is this possible with purely CSS on the <video-player>
or <video-player-container>
element? or will a custom “scaling” function be needed?
Has anyone already solved this and would share code or best practices?