diff --git a/index.html b/index.html index d48ea70..0a0b41d 100644 --- a/index.html +++ b/index.html @@ -58,6 +58,10 @@
The terms [=permission state=], [=request permission to use=], and prompt the user to choose are defined in [[!permissions]].
++ {{Performance.timeOrigin}} and {{Performance.now()}} are defined in + [[!hr-time]]. +
+ Some video sources can supply information about when a video frame was captured. + This information is useful for example for AV sync and end-to-end delay measurement. + It MAY be set by the user agent (and be present in {{VideoFrameMetadata}}) by local capturers, or it + MAY be supplied in {{VideoFrameMetadata}} when a VideoFrame is created. +
++ partial dictionary VideoFrameMetadata { + DOMHighResTimeStamp captureTime; + };+
captureTime
of type DOMHighResTimeStamp, readonlyThe capture time of the frame. The timestamp is defined as {{Performance.timeOrigin}} + {{Performance.now()}} at that time.
+