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: {
prototype: VideoPlaybackQuality;
new (): VideoPlaybackQuality;
};