cancel
Showing results for 
Search instead for 
Did you mean: 

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

matheusantonio
Listener

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

matheusantonio_0-1635442799987.png

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 2

Isaac894
Listener

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

 

umarnazarov
Listener

 @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