supervision-js
    Preparing search index...

    Interface MediaFrameMetadata

    Renderer-neutral metadata for one media frame.

    Platform packages decide what the frame payload is: a browser VideoSample, an ImageBitmap, a React Native native texture handle, or a test fixture. Core only needs the timeline and dimensions that detections align to.

    interface MediaFrameMetadata {
        duration: number | null;
        frameIndex: number | null;
        height: number;
        mediaTime: number;
        width: number;
    }
    Index
    duration: number | null
    frameIndex: number | null
    height: number
    mediaTime: number
    width: number