supervision-js
    Preparing search index...

    Type Alias MediaStreamRendererSourceOptions

    type MediaStreamRendererSourceOptions = {
        maxBufferedFrames?: number;
        stopTracksOnDispose?: boolean;
        timestampOrigin?: "first-frame" | "media";
    }
    Index
    maxBufferedFrames?: number

    Maximum decoded snapshots retained while the renderer is catching up.

    stopTracksOnDispose?: boolean

    Stop the caller-supplied MediaStream tracks when the session is destroyed. Defaults to false because WebRTC connection ownership normally stays with the host application.

    timestampOrigin?: "first-frame" | "media"

    Timestamp origin exposed to the renderer. "media" preserves the browser MediaStream clock. "first-frame" starts the visible timeline at zero so an independently transported detection stream can apply the same origin. Defaults to "media".