supervision-js
    Preparing search index...

    Interface MediaFrameCapture

    Encoded image of the media frame the renderer is currently presenting.

    The image holds raw media pixels without annotation layers, paired with the presentation timestamp of that exact frame.

    interface MediaFrameCapture {
        blob: Blob;
        mediaTime: number;
        type: string;
        width: number;
        height: number;
    }
    Index
    blob: Blob

    Encoded image bytes for the captured media frame.

    mediaTime: number

    Presentation timestamp of the captured frame on the media timeline.

    type: string

    Encoded image MIME type produced by the browser.

    width: number

    Captured image width in media pixels.

    height: number

    Captured image height in media pixels.