Video Aspect Ratio

Video SDK Type and Version: React Native VideoSDK 1.12.10

Description
Hello! I use VideoSDK for React Native and i noticed a difference in camera aspect ratio between VideoSDK and original Zoom app. As i see, in VideoSDK i only can get fixed aspect ratio of 16:9 so picture looks more narrow than in Zoom app. And i couldn’t find in docs any way to control aspect ratio. " VideoAspect" doesn’t help much cause it only controls phone screen fullfillment by video but doesnt affect original video capture parameters.

Can anyone help me with this issue?

Thanks!

Have you tried passing in videoAspect={VideoAspect.Original}?

         <ZoomView
            style={styles.container}
            userId={user.userId}
            fullScreen
            videoAspect={VideoAspect.Original}
          />

You have the following options: Original, FullFilled, LetterBox & PanAndScan.

Hi! Thanks for your response. Yes, i’ve tried those VideoAspect options, but they made pretty small difference

Have you tried changing the size of the ZoomView? For example setting the FullFilled or PanAndScan option will resize the video to fit the container.