Member Junction
    Preparing search index...

    A single encoded viewport frame emitted by the live screencast (CDP Page.startScreencast for self-host, or a provider live-view stream). Frames feed the channel's ScreenOut media track when screen-sharing the browser into a meeting, or a panel in the MJ console.

    interface RemoteBrowserScreencastFrame {
        DataBase64: string;
        Height: number;
        SequenceNumber: number;
        Width: number;
    }
    Index

    Properties

    DataBase64: string

    The frame image, Base64-encoded (typically JPEG/PNG per the backend).

    Height: number

    Frame height in pixels.

    SequenceNumber: number

    Monotonically increasing sequence number for ordering / drop detection.

    Width: number

    Frame width in pixels.