Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLVideoElement
  4. getVideoPlaybackQuality()

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.

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

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp