Monitoring Network Quality - Javascript
VideoSDK's quality-limitation event helps you stay informed whenever media quality is impacted or restored during a meeting. This allows you to take proactive steps and ensure a smooth user experience.
quality-limitation
-
This event is triggered whenever a media quality limitation is either detected or resolved during a meeting.
-
The callback includes a
typeparameter that specifies the cause of the quality limitation. Possible values:cpu: Quality is reduced due to high CPU usage.bandwidth: Quality is reduced due to insufficient bandwidth.congestion: Quality is reduced due to network congestion.
-
The callback also includes a
stateparameter that indicates the current status of the limitation:detected: A limitation has been identified.resolved: The limitation has been cleared.
-
A
timestampparameter is provided, representing the exact time (in milliseconds since epoch) when the event occurred. -
It can be subscribed to using the
meetingobject.
Example
Here is an example demonstrating the usage of the event mentioned on this page.
let meeting;
// Initialize Meeting
meeting = VideoSDK.initMeeting({
// Configuration options
});
// Subscribe to the quality-limitation event
meeting.on("quality-limitation", ({ type, state, timestamp }) => {});
API Reference
The API references for all the methods and events utilized in this guide are provided below.
Got a Question? Ask us on discord

