peerix - v0.1.0
    Preparing search index...

    Interface RemotePeerTrackEvent

    Track event data.

    interface RemotePeerTrackEvent {
        id: string;
        label: string;
        name: "track:add" | "track:remove";
        stream: MediaStream;
        track: MediaStreamTrack;
    }
    Index

    Properties

    Properties

    id: string

    Unique identifier for the remote peer.

    label: string

    Label of the media stream.

    name: "track:add" | "track:remove"

    Name of the event.

    stream: MediaStream

    Media stream associated with the event.

    track: MediaStreamTrack

    Media track associated with the event.