HTMLVideoElement: getVideoPlaybackQuality() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since February 2020.
TheHTMLVideoElement methodgetVideoPlaybackQuality() creates and returns aVideoPlaybackQuality object containing metrics including how manyframes have been lost.
The data returned can be used to evaluate the quality of the video stream.
In this article
Syntax
js
getVideoPlaybackQuality()Parameters
None.
Return value
AVideoPlaybackQuality object providing information about the videoelement's current playback quality.
Examples
This example updates an element to indicate the total number of video frames that haveelapsed so far in the playback process. This value includes any dropped or corruptedframes, so it's not the same as "total number of frames played."
js
const videoElem = document.getElementById("my_vid");const counterElem = document.getElementById("counter");const quality = videoElem.getVideoPlaybackQuality();counterElem.innerText = quality.totalVideoFrames;Specifications
| Specification |
|---|
| Media Playback Quality> # dom-htmlvideoelement-getvideoplaybackquality> |
Browser compatibility
See also
- The
<video>element - The
VideoPlaybackQualityinterface.