obby-client for TypeScript
    Preparing search index...

    Type Alias VoiceTrackHint

    A hint from the SFU mapping one negotiated media line to the member it belongs to.

    The SFU sends mid-to-member hints so an inbound track can be attributed to the right member when the SDP's own msid is missing or unreliable. This is the minimal shape that serves that purpose; a real server may send more fields, which this simply ignores on decode.

    type VoiceTrackHint = {
        member: string;
        mid: string;
    }
    Index
    member: string

    The member that media line belongs to.

    mid: string

    The SDP media line identifier this hint names.