MediaSFU Shared
    Preparing search index...

    Interface PlaybackHandle

    A running playback. Always detachPlayback it — none of this is garbage-collected.

    interface PlaybackHandle {
        protocol: PlaybackProtocol;
        url: string;
        stream: MediaStream | null;
        detach: () => void;
    }
    Index

    Properties

    url: string
    stream: MediaStream | null

    The media, when the protocol produces one directly (WHEP).

    detach: () => void

    Release the connection, the player, and the element's source.