Interface RTCRtpTransceiver

interface RTCRtpTransceiver {
    currentDirection: null | RTCRtpTransceiverDirection;
    direction: RTCRtpTransceiverDirection;
    mid: null | string;
    receiver: RTCRtpReceiver;
    sender: RTCRtpSender;
    setCodecPreferences(codecs: RTCRtpCodec[]): void;
    stop(): void;
}

Properties

currentDirection: null | RTCRtpTransceiverDirection
mid: null | string
receiver: RTCRtpReceiver
sender: RTCRtpSender

Methods

  • Returns void