MediaSFU Shared
    Preparing search index...

    Interface RecordingNotice

    interface RecordingNotice {
        message: string;
        elapsed: string;
        elapsedSeconds: number;
        canPauseResume: boolean;
        pausesUsed: number;
        pauseLimit: number;
        pauseLimitReached: boolean;
    }
    Index

    Properties

    message: string

    The SDK's current recording notice, or '' when there is none.

    elapsed: string

    Formatted elapsed time as the SDK reports it (e.g. "00:12:04").

    elapsedSeconds: number

    Elapsed seconds.

    canPauseResume: boolean

    True while pause/resume is permitted (the SDK enforces a cooldown).

    pausesUsed: number

    Pauses used so far.

    pauseLimit: number

    Pauses allowed for the active media type; 0 when unpublished.

    pauseLimitReached: boolean

    True when the pause allowance is exhausted.