Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VideoPlaybackQuality

Returned by the HTMLVideoElement.getVideoPlaybackQuality() method and contains metrics that can be used to determine the playback quality of a video.

interface VideoPlaybackQuality {
readonly corruptedVideoFrames: number;
readonly creationTime: DOMHighResTimeStamp;
readonly droppedVideoFrames: number;
readonly totalVideoFrames: number;
}
var VideoPlaybackQuality: {};

§Properties

§
readonly corruptedVideoFrames: number
[src]
§
readonly creationTime: DOMHighResTimeStamp
[src]
§
readonly droppedVideoFrames: number
[src]
§
readonly totalVideoFrames: number
[src]