host video doesn’t render it throws “Detected unrecognized participant ID. Ignoring” error

Description

  • When the host starts the meeting, if a participant joins, there is a delay in rendering the incoming video.
  • On the participant side, the host video doesn’t render.
  • It throws an error “Detected unrecognised user ignoring ID” and

{

reason: “user is not send video” ​,

type: “INVALID_PARAMETERS”

}

For the above error, I tried to join into same session from different machines, but still, the same issues exist.

Browser Console Error
"Detected unrecognised user ignoring ID

Which Web Video SDK version?
1.3.0

Video SDK Code Snippets

const onPeerVideoStateChangedListener = (zoomClient, mediaStream) => {
    zoomClient.on('peer-video-state-change', async (payload) => {
        console.log('onPeerVideoStateChange', payload);
        
        const { action, userId } = payload;

        if (userId !== state.participantId) {
            console.log('Detected unrecognized participant ID. Ignoring: ', userId);
            return;
        }

        if (action === PEER_VIDEO_STATE_CHANGE_ACTION_TYPE.Start) {
            toggleParticipantVideo(mediaStream, true);
        } else if (action === 'Stop') {
            toggleParticipantVideo(mediaStream, false);
        }
    });
};

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Go to ‘…’
  2. Click on ‘…’
  3. Scroll down to ‘…’
  4. See error

Screenshots
If applicable, add screenshots to help explain your problem.

Device (please complete the following information):

  • Device: [e.g. Macbook Pro]
  • OS: [e.g. macOS 11]
  • Browser: [e.g. Chrome]
  • Browser Version [e.g. 88.0.4324.150 (Official Build) (x86_64)]

Additional context
Add any other context about the problem here.

Hi @vamshi.v21998 ,

Thank you for sharing this. Can you please confirm if this is reproducible with the sample app?

Best,
Gianni

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.