JS Component View - Screen Share doesn't work

@zoomus/websdk”: “2.9.7”
Chrome 111.0.5563.65 (Official Build) (64-bit)

Imgur
other participant is using the Zoom Windows App, when they screenshare, the dimension changes, but the screen being shared doesn’t show up

any potential fixes for this issue? thanks.

looks like the exact reproduction step is as follows:

  • host: start meeting, start screen share immediately
  • client on meeting sdk joins with a custom video width and height (ex: 500 x 280)
  • the client will be much taller than the expected height

Hi @jet.fontanilla ,

could you share more information? I’ve tried the below, but was unable to replicate the issue

client.init({
  zoomAppRoot: meetingSDKElement,
  language: 'en-US',
  customize: {
    video: {
      isResizable: true,
      viewSizes: {
        default: {
          width: 500,
          height: 280
        }
      }
    }
  }
})

1 Like