Camera position problem

Description
We have two different applications (student and mentor) consisting of a marketplace. Exactly same code has been used to adjust camera position.
While one of them is vertical, the other is horizontal.
I added one screenshot for each application.

We would like to provide same experience in both apps. How can we solve this issue?

Which version?
IOS 12 & 13

Screenshots
https://zoomus.zendesk.com/attachments/token/xR5T4tGth0TRpBrIBxrbI42SY/?name=studentApp+-+incorrect+experience.jpeg
https://zoomus.zendesk.com/attachments/token/fIVKdNDhP4Pqa57S8bVb6tmh0/?name=mentorApp+-+correct+experience.jpeg

Hi hardc0der,

Thanks for the post and the screenshots. Do you want to have the same orientation for both views? If so, you may leverage the following interface to set the video aspect:

/*!
 @brief Designated for changing video aspect according to customer's requirement.
 */
- (void)setVideoAspect:(MobileRTCVideoAspect)aspect;

Here is an example in our demo app: https://github.com/zoom/zoom-sdk-ios/blob/f3a734324db65a99b9b578b2b25f0d3b2a2ba10e/MobileRTCSample/MobileRTCSample/CustomMeeting/VideoViewController.m#L52

And the available aspect options are: https://github.com/zoom/zoom-sdk-ios/blob/f3a734324db65a99b9b578b2b25f0d3b2a2ba10e/lib/MobileRTC.framework/Headers/MobileRTCVideoView.h#L14

Hope this helps. Thanks!