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

SpecificationStatusComment
Media Playback Quality
The definition of 'VideoPlaybackQuality.droppedVideoFrames' in that specification.
Editor's DraftInitial definition.

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:35 次

字数:3167

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文