Hello,
I join room using like so
zoomVideo = ZoomVideo.createClient()
await zoomVideo.init('pl-PL', 'Global', { patchJsMedia: true })
await zoomVideo.join(TOPIC, TOKEN, USER_ID, PASSCODE)
zoomSession = zoomVideo.getMediaStream()
Now when user is not allow to use camera i have error and that is fine.
zoomHelpers.js:14 you got an error: NotAllowedError: Permission denied
However when he allow to use camera but I do not want to at start start video i have problem.
To start camera i have
await zoomSession.startVideo()
But i want to start camera on button click of user.
However if I do not use function
await zoomSession.startVideo()
I do not see any participant, also i have no sound. But 100% I`am in the room.
Some times when i do not startVideo i see error of blob:… not found.
So is there option for me to join room with disabled camera and enable it on click.
If i do not run startVideo also no events fire.
Regards