supervision-js
    Preparing search index...

    Interface DetectionFrameLiveOptions

    Live ingestion policy for appendLiveFrame.

    A live producer only knows that its newest result is current; it learns when that result stopped being current only when the next one arrives. The source therefore holds the newest frame open for holdSeconds and closes it at the next frame's mediaTime when that frame lands.

    interface DetectionFrameLiveOptions {
        holdSeconds?: number;
    }
    Index
    holdSeconds?: number

    How long the newest live frame stays active while no successor exists.

    Keep it long enough to cover a stalled producer and short enough that a stale overlay eventually disappears. Defaults to 60 seconds.