LocalVideoStats
The statistics of the local video stream.
public class LocalVideoStats { public LocalVideoStats() { } public uint uid { set; get; } public int sentBitrate { set; get; } public int sentFrameRate { set; get; } public int captureFrameRate { set; get; } public int captureFrameWidth { set; get; } public int captureFrameHeight { set; get; } public int regulatedCaptureFrameRate { set; get; } public int regulatedCaptureFrameWidth { set; get; public int regulatedCaptureFrameHeight { set; get; } public int encoderOutputFrameRate { set; get; } public int encodedFrameWidth { set; get; } public int encodedFrameHeight { set; get; } public int rendererOutputFrameRate { set; get; } public int targetBitrate { set; get; } public int targetFrameRate { set; get; } public QUALITY_ADAPT_INDICATION qualityAdaptIndication { set; get; } public int encodedBitrate { set; get; } public int encodedFrameCount { set; get; } public VIDEO_CODEC_TYPE codecType { set; get; } public ushort txPacketLossRate { set; get; } public CAPTURE_BRIGHTNESS_LEVEL_TYPE captureBrightnessLevel { set; get; } public int hwEncoderAccelerating { set; get; } };
Attributes
- uid
- The ID of the local user.
- sentBitrate
-
The actual bitrate (Kbps) while sending the local video stream.Attention: This value does not include the bitrate for resending the video after packet loss.
- sentFrameRate
- The actual frame rate (fps) while sending the local video stream.Attention: This value does not include the frame rate for resending the video after packet loss.
- captureFrameRate
- The frame rate (fps) for capturing the local video stream.
- captureFrameWidth
- The width (px) for capturing the local video stream.
- captureFrameHeight
- The height (px) for capturing the local video stream.
- regulatedCaptureFrameRate
- The frame rate (fps) adjusted by the built-in video capture adapter (regulator) of the SDK for capturing the local video stream. The regulator adjusts the frame rate of the video captured by the camera according to the video encoding configuration.
- regulatedCaptureFrameWidth
- The width (px) adjusted by the built-in video capture adapter (regulator) of the SDK for capturing the local video stream. The regulator adjusts the height and width of the video captured by the camera according to the video encoding configuration.
- regulatedCaptureFrameHeight
- The height (px) adjusted by the built-in video capture adapter (regulator) of the SDK for capturing the local video stream. The regulator adjusts the height and width of the video captured by the camera according to the video encoding configuration.
- encoderOutputFrameRate
- The output frame rate (fps) of the local video encoder.
- rendererOutputFrameRate
- The output frame rate (fps) of the local video renderer.
- targetBitrate
- The target bitrate (Kbps) of the current encoder. This is an estimate made by the SDK based on the current network conditions.
- targetFrameRate
- The target frame rate (fps) of the current encoder.
- qualityAdaptIndication
- The quality adaptation of the local video stream in the reported interval (based on the target frame rate and target bitrate). See QUALITY_ADAPT_INDICATION.
- encodedBitrate
-
The bitrate (Kbps) while encoding the local video stream.Attention: This value does not include the bitrate for resending the video after packet loss.
- encodedFrameHeight
- The height of the encoded video (px).
- encodedFrameWidth
- The width of the encoded video (px).
- encodedFrameCount
- The number of the sent video frames, represented by an aggregate value.
- codecType
- The codec type of the local video. See VIDEO_CODEC_TYPE.
- txPacketLossRate
- The video packet loss rate (%) from the local client to the Agora server before applying the anti-packet loss strategies.
- captureFrameRate
- The frame rate (fps) for capturing the local video stream.
- captureBrightnessLevel
- The brightness level of the video image captured by the local camera. See CAPTURE_BRIGHTNESS_LEVEL_TYPE.
- hwEncoderAccelerating
- The local video encoding acceleration type.
- 0: Software encoding is applied without acceleration.
- 1: Hardware encoding is applied for acceleration.