In-call quality monitoring
During a call, Video SDK triggers callbacks related to the video calling quality. These callbacks enable you to monitor your users' experience, troubleshoot issues, and optimize their overall experience
Understand the tech
After a user joins a channel, Video SDK triggers a series of callbacks every 2 seconds, reporting information such as uplink and downlink network quality, real-time interaction statistics, and statistics of local and remote audio and video streams.
When there is a change in the audio or video state of a user, Video SDK triggers a callback to report the latest state and the reason for the change. The following figure shows the audio transmission process between app clients:
Audio transmission process
To monitor the call quality, Agora provides the following call quality notifications:
Network quality
The network quality callback provides insight into the uplink and downlink last mile network quality for each participant in the channel. Last mile refers to the network from your device to Agora server. The Network quality scores are calculated based on factors such as sending or receiving bitrate, network packet loss rate, round-trip delay, and network jitter.
Statistics
The statistics callback, triggered every 2 seconds, reports key metrics such as call duration, the number of participants, system CPU usage, and app CPU usage.
Audio quality
Callbacks related to audio quality cover both local and remote audio streams. You monitor statistics and status changes, to gain insights into the quality of audio streams and any related reasons for status changes.
Video quality
Video quality callbacks provide information on both local and remote video streams. You receive statistics and status change notifications, that enable you to understand the quality of video streams and any related reasons for status changes.
Prerequisites
Ensure that you have implemented the SDK quickstart in your project.
Implement in-call quality monitoring
In the AgoraRtcEngineDelegate
, implement the necessary callbacks to monitor real-time interaction quality and audio or video stream status. Key callbacks include:
networkQuality
: Reports upstream and downstream last mile network quality.reportRtcStats
: Provides real-time interaction statistics.localAudioStats
: Reports statistics on sent audio streams.localAudioStateChange
: Reports local audio stream state changes.remoteAudioStats
: Reports statistics on received remote audio streams.remoteAudioStateChangedOfUid
: Reports remote audio stream state changes.localVideoStats
: Reports statistics on sent video streams.localVideoStateChangedOfState
: Reports local video stream state changes.remoteVideoStats
: Reports statistics on received remote video streams.remoteVideoStateChangedOfUid
: Reports remote video stream state changes.
In your app, add the following code:
Reference
Network quality score
Value | Enumeration | Description |
---|---|---|
0 | AgoraNetworkQualityUnknown | The network quality is unknown. |
1 | AgoraNetworkQualityExcellent | The network quality is excellent. |
2 | AgoraNetworkQualityGood | The network quality is good, but the bitrate is slightly lower than excellent. |
3 | AgoraNetworkQualityPoor | Users can feel the communication is slightly impaired. |
4 | AgoraNetworkQualityBad | Users cannot communicate smoothly. |
5 | AgoraNetworkQualityVBad | The quality is so bad that users can barely communicate. |
6 | AgoraNetworkQualityDown | The network is down and users cannot communicate at all. |
API reference
-
rtcEngine(_:networkQuality:txQuality:rxQuality:)
-
rtcEngine(_:reportRtcStats:)
-
rtcEngine(_:localAudioStats:)
-
rtcEngine(_:localAudioStateChanged:reason:)
-
rtcEngine(_:remoteAudioStats:)
-
rtcEngine(_:remoteAudioStateChangedOfUid:state:reason:elapsed:)
-
rtcEngine(_:localVideoStats:sourceType:)
-
rtcEngine(_:localVideoStateChangedOf:reason:sourceType:)
-
rtcEngine(_:remoteVideoStats:)
-
rtcEngine(_:remoteVideoStateChangedOfUid:state:reason:elapsed:)