VideoPlaybackQuality.droppedVideoFrames - Web APIs 编辑
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
Specification | Status | Comment |
---|---|---|
Media Playback Quality The definition of 'VideoPlaybackQuality.droppedVideoFrames' in that specification. | Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- The
HTMLVideoElement.getVideoPlaybackQuality()
method, which creates and returnsVideoPlaybackQuality
objects
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论