VideoPlaybackQuality.creationTime
The read-only creationTime
property on the VideoPlaybackQuality
interface reports the number of milliseconds since the browsing context was created this quality sample was recorded.
Syntax
value = videoPlaybackQuality.creationTime;
Value
A DOMHighResTimeStamp
object which indicates the number of milliseconds that elapased between the time the browsing context was created and the time at which this sample of the video quality was obtained.
For details on how the time is determined, see Performance.now()
.
Example
This example calls getVideoPlaybackQuality()
to obtain a VideoPlaybackQuality
object, then determines what percentage of frames have been lost by either corruption or being dropped. If that exceeds 10% (0.1), a function called lostFramesThresholdExceeded()
is called to, perhaps, update a quality indicator to show an increase in frame loss.
var videoElem = document.getElementById("my_vid"); var quality = videoElem.getVideoPlaybackQuality(); if ((quality.corruptedVideoFrames + quality.droppedVideoFrames)/quality.totalVideoFrames > 0.1) { lostFramesThresholdExceeded(); }
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
creationTime |
23 |
12 |
42 |
11
Only works on Windows 8+.
|
15 |
8 |
4.4.3 |
25 |
No |
14 |
No |
1.5 |
See also
- The
HTMLVideoElement.getVideoPlaybackQuality()
method, which returnsVideoPlaybackQuality
objects
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/VideoPlaybackQuality/creationTime