Skip to main content

Other Methods

Update media resolution at runtime

Camera

meeting.self.updateVideoConstraints(resolution)

Example

meeting.self.updateVideoConstraints({
width: { ideal: 1920 },
height: { ideal: 1080 },
});

Screenshare

meeting.self.updateScreenshareConstraints(resolution)

Example

meeting.self.updateScreenshareConstraints({
width: { ideal: 1920 },
height: { ideal: 1080 },
});

Pinning & unpinning

You can pin or unpin yourself given you have the appropriate permissions. You can check the pinned status of the local user using meeting.isPinned.

meeting.self.pin();
meeting.self.unpin();

Webinar

The Dyte Webinar revolves around the concept of a stage. The stage is directly accessible for hosts, while participants can request to join the stage. Here's how you can interact with stage APIs.

Read more about Dyte Webinars here.

// Request to join stage
await meeting.self.requestToJoinStage();

// Leave stage
await meeting.self.leaveStage();