I want to know how can I turn on self mirroring in browser using zoom web SDK

Hi @gobinda,

Usually this is managed at the user level and is something that is changed locally within their webcam settings, however it is something that is expected in a future release.

If you’re wanting a quick and dirty solution to locally mirror your webcam (it will not broadcast mirrored), then please inject the below CSS into your stylesheets to flip the image horizontally.

#main-video,
#suspension-video {
    transform: scaleX(-1);
}

Thanks,
Alex

1 Like