THEOplayer > Metrics
The metrics API which can be used to gather information related to the quality-of-service and video playback experience.
Signature:
export interface Metrics
- Available since v2.46.0.
Property |
Type |
Description |
---|---|---|
The total number of audio and video segments in the buffer. |
||
|
The total number of video frames that could not be decoded. |
|
|
The bandwidth in bits per second estimated to be currently available as used for ABR decisions. |
|
|
The total number of dropped video frames. |
|
|
The total bytes received in response to all media segments since loading the current source. |
The total number of audio and video segments in the buffer.
Signature:
bufferedSegments: BufferedSegments;
- This value is currently available only for DASH.
The total number of video frames that could not be decoded.
Signature:
corruptedVideoFrames: number;
- This value resets on a source change.
The bandwidth in bits per second estimated to be currently available as used for ABR decisions.
Signature:
currentBandwidthEstimate: number;
The total number of dropped video frames.
Signature:
droppedVideoFrames: number;
- This value resets on a source change.
The total bytes received in response to all media segments since loading the current source.
Signature:
totalBytesLoaded: number;