I have a Component View that I’m calling updateVideoOptions on with some width and height. The width is getting honored properly, but the height is not. I can resize the window manually to the correct size so I know it is not hitting some arbitrary lower limit.
I noticed this snippet in the docs: Meeting SDK - web - component view - Resizing
Since the videos render in a 16/9 aspect ratio, they will always adjust to maintain the aspect ratio. The video container will be the size you specify. In some cases the SDK will adjust the height of the container to render the videos as large as possible, but the width you set will always be respected.
Is there a way to opt out of this? I want to be able to fit the entire Component View inside of some dimensions. As I said, I ran resize the container to be the correct size, so I know it should be doable. The API is just not respecting the value passed.