How to save cpu usage of participants' video in Meeting SDK for web?

Description
high CPU usage while participants’ video are on. (or is this usual?)
how to save cpu usage of participants’ video in Meeting SDK for web on a container environment??

Browser Console Error

Which Web Meeting SDK version?
2.5.0, 2.9.5, 2.10.1,2.11.0 (not tried other version)

Meeting SDK Code Snippets
The code snippets that are causing the error / issue so we can reproduce.

function join() {
      ZoomMtg.join({
        sdkKey: meetingConfig.sdkKey,
        signature: meetingConfig.signature,
        meetingNumber: meetingConfig.meetingNumber,
        userName: meetingConfig.userName,
        userEmail: meetingConfig.userEmail,
        passWord: meetingConfig.passWord,
        success: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
          getAttendeeslist();
          getCurrentUser();
        },
        error: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
        },
      });
    }
    window.zoomJoin = join;

    ZoomMtg.init({
      debug: true,
      leaveUrl: meetingConfig.leaveUrl,
      webEndpoint: meetingConfig.webEndpoint,
      disableCORP: false,
      disablePreview: true,
      success: function () {
        ZoomMtg.i18n.load(meetingConfig.lang);
        ZoomMtg.i18n.reload(meetingConfig.lang);
        join();
      },
      error: function (res) {
        console.log(res);
      },
    });

To Reproduce(If applicable)

  1. join any Zoom meeting and just monitor cpu usage

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

Troubleshooting Routes

  • In a meeting with two participants (myself with video off, the other participant with video on), the cpu usage on my pc (gke node described below) was about 4 vCPU, but after the other participant turned video off, it dropped to about 0.4 vCPU. So I believe the video cpu usage is the main problem.

Device (please complete the following information):

  • Device: Linux (a container environment in e2-custom-8-10240 GKE node)
  • OS: ubuntu 22.04
  • Browser: Chrome
  • Browser Version: 108.0.5359.124-1

Additional context
Add any other context about the problem here.

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