HTMLVideoElement.getVideoPlaybackQuality()
The HTMLVideoElement
method getVideoPlaybackQuality()
creates and returns a VideoPlaybackQuality
object containing metrics including how many frames have been lost.
The data returned can be used to evaluate the quality of the video stream.
Syntax
videoPQ = videoElement.getVideoPlaybackQuality();
Return value
A VideoPlaybackQuality
object providing information about the video element's current playback quality.
Example
This example updates an element to indicate the total number of video frames that have elapsed so far in the playback process. This value includes any dropped or corrupted frames, so it's not the same as "total number of frames played."
var videoElem = document.getElementById("my_vid"); var counterElem = document.getElementById("counter"); var quality = videoElem.getVideoPlaybackQuality(); counterElem.innerText = quality.totalVideoFrames;
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
getVideoPlaybackQuality |
80 |
12 |
42 |
11
Only works on Windows 8+.
|
67 |
8 |
80 |
80 |
42 |
57 |
8 |
13.0 |
See also
- The
<video>
element - The
VideoPlaybackQuality
interface.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality