diff --git a/index.html b/index.html index d48ea70..0a0b41d 100644 --- a/index.html +++ b/index.html @@ -58,6 +58,10 @@

Terminology

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]]. +

@@ -1151,6 +1155,34 @@

Constrainable Properties

+
+

Capture timestamps

+
+

+ 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. +

+
+

{{VideoFrameMetadata}}

+
+    partial dictionary VideoFrameMetadata {
+      DOMHighResTimeStamp captureTime;
+    };
+
+

Members

+
+
captureTime of type DOMHighResTimeStamp, readonly
+
+

The capture time of the frame. The timestamp is defined as {{Performance.timeOrigin}} + {{Performance.now()}} at that time.

+
+
+
+
+
+

Exposing MediaStreamTrack source heuristic reactions support