I don't see my camera video in meeting with zoom sdk / reactjs | Community
Skip to main content
Newcomer
October 28, 2021
Question

I don't see my camera video in meeting with zoom sdk / reactjs

  • October 28, 2021
  • 2 replies
  • 0 views

When I join the meeting, I can only see the host's camera, I want to see my camera, it's possible?

 

there is a screenshot's meeting

there is the way that I use .init

 

ZoomMtg.init({ leaveUrl: livestreamGuid, isSupportAV: true, isSupportChat: false, debug: true, success: (success) => { console.log("zoom initiated", success); ZoomMtg.join({ signature: signature, meetingNumber: meeting_id, userName: me.name, apiKey: apiKey, passWord: zoom_password, success: (success) => { console.log("joined", success); setIsZoomJoinedSuccess(true); let zoomUserId; ZoomMtg.getCurrentUser({ success: ({ result: { currentUser } }) => (zoomUserId = currentUser.userId), error: (e) => console.log("error to get user from zoom", e), }); ZoomMtg.mute({ userId: zoomUserId, mute: true, success: (e) => console.log("succes to mute user", e), error: (e) => console.log("error to mute user ", e), }); }, error: (error) => { console.log(error); }, }); }, error: (error) => { console.log(error); }, });

 

there is the way that I load zoom libs

 

ZoomMtg.setZoomJSLib("https://source.zoom.us/1.9.9/lib", "/av"); ZoomMtg.preLoadWasm(); ZoomMtg.prepareJssdk(); ZoomMtg.i18n.load("pt-PT"); ZoomMtg.i18n.reload("pt-PT");

 

 

    2 replies

    Newcomer
    November 1, 2021

    The meeting maybe is in focus mode, or your laptop isn't available gallery view.

     

    Newcomer
    January 30, 2022

     @matheusantonio

    Hi, from where are getting meetingNumber i was working in this project and unable to figure out how to get it. Can you help