edgeport - v1.0.3
    Preparing search index...

    Interface SdpMedia

    One parsed SDP media description (m= line plus its attributes).

    interface SdpMedia {
        attributes: Record<string, string>;
        formats: string[];
        port: number;
        protocol: string;
        type: string;
    }
    Index
    attributes: Record<string, string>

    Media-level attributes: a=name:value (value '' for a flag).

    formats: string[]

    The format list after the protocol.

    port: number

    Transport port.

    protocol: string

    Transport protocol (TCP/MSRP, RTP/AVP, ...).

    type: string

    Media type (message, audio, ...).