VideoPlaybackQuality.droppedVideoFrames
The read-only droppedVideoFrames
property of the VideoPlaybackQuality
interface returns the number of video frames which have been dropped rather than being displayed since the last time the media was loaded into the HTMLVideoElement
.
Syntax
value = videoPlaybackQuality.droppedVideoFrames;
Value
An unsigned 64-bit value indicating the number of frames that have been dropped since the last time the media in the <video>
element was loaded or reloaded. This information can be used to determine whether or not to downgrade the video stream to avoid dropping frames.
Frames are typically dropped either before or after decoding them, when it's determined that it will not be possible to draw them to the screen at the correct time.
Example
This example calls getVideoPlaybackQuality()
to obtain a VideoPlaybackQuality
object, then determines what percentage of frames have been dropped. That value is then presented in an element for the user's reference.
var videoElem = document.getElementById("my_vid"); var percentElem = document.getElementById("percent"); var quality = videoElem.getVideoPlaybackQuality(); var dropPercent = (quality.droppedVideoFrames/quality.totalVideoFrames)*100; percentElem.innerText = Math.trunc(dropPercent).toString(10);
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 | |
droppedVideoFrames |
23 |
12 |
42 |
11
Only works on Windows 8+.
|
15 |
8 |
4.4.3 |
25 |
No |
14 |
No |
1.5 |
See also
- The
HTMLVideoElement.getVideoPlaybackQuality()
method, which creates and returnsVideoPlaybackQuality
objects
© 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/VideoPlaybackQuality/droppedVideoFrames