Liking cljdoc? Tell your friends :D

web.rtc.RTCRtpTransceiver

The WebRTC interface RTCRtpTransceiver describes a permanent of an web.audio.RTCRtpSender and an web.rtc.RTCRtpReceiver, with some shared state.

The WebRTC interface RTCRtpTransceiver describes a permanent
of an `web.audio.RTCRtpSender` and an `web.rtc.RTCRtpReceiver`,
with some shared state.
raw docstring

current-directioncljs

(current-direction this)

Property.

The read-only web.rtc.RTCRtpTransceiver property currentDirection a string which indicates the current directionality of the transceiver.

var direction = RTCRtpTransceiver.currentDirection

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/currentDirection

Property.

The read-only `web.rtc.RTCRtpTransceiver` property currentDirection
a string which indicates the current directionality of the transceiver.

`var direction = RTCRtpTransceiver.currentDirection`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/currentDirection`
sourceraw docstring

directioncljs

(direction this)

Property.

The read-only web.rtc.RTCRtpTransceiver property direction a string which indicates the transceiver's preferred directionality.

var direction = RTCRtpTransceiver.direction

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction

Property.

The read-only `web.rtc.RTCRtpTransceiver` property direction
a string which indicates the transceiver's preferred directionality.

`var direction = RTCRtpTransceiver.direction`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction`
sourceraw docstring

midcljs

(mid this)

Property.

The read-only web.rtc.RTCRtpTransceiver interface's mid property the negotiated media ID (mid) which the local and remote peers agreed upon to uniquely identify the stream's pairing of sender receiver.

var mediaID = RTCRtpTransceiver.mid;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/mid

Property.

The read-only `web.rtc.RTCRtpTransceiver` interface's mid property
the negotiated media ID (mid) which the local and remote peers
agreed upon to uniquely identify the stream's pairing of sender
receiver.

`var mediaID = RTCRtpTransceiver.mid;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/mid`
sourceraw docstring

receivercljs

(receiver this)

Property.

The read-only receiver property of WebRTC's web.rtc.RTCRtpTransceiver indicates the web.rtc.RTCRtpReceiver responsible for receiving decoding incoming media data for the transceiver's stream.

var rtpReceiver = RTCRtpTransceiver.receiver;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver

Property.

The read-only receiver property of WebRTC's `web.rtc.RTCRtpTransceiver`
indicates the `web.rtc.RTCRtpReceiver` responsible for receiving
decoding incoming media data for the transceiver's stream.

`var rtpReceiver = RTCRtpTransceiver.receiver;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver`
sourceraw docstring

sendercljs

(sender this)

Property.

The read-only sender property of WebRTC's web.rtc.RTCRtpTransceiver indicates the web.audio.RTCRtpSender responsible for encoding sending outgoing media data for the transceiver's stream.

var rtpSender = RTCRtpTransceiver.sender;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender

Property.

The read-only sender property of WebRTC's `web.rtc.RTCRtpTransceiver`
indicates the `web.audio.RTCRtpSender` responsible for encoding
sending outgoing media data for the transceiver's stream.

`var rtpSender = RTCRtpTransceiver.sender;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender`
sourceraw docstring

set-codec-preferencescljs

(set-codec-preferences this codecs)

Method.

The web.rtc.RTCRtpTransceiver method setCodecPreferences() the transceiver's codecs given a list of RTCRtpCodeCapability specifying the new preferences for each codec.

rtcRtpTransceiver.setCodecPreferences(codecs)

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/setCodecPreferences

Method.

The `web.rtc.RTCRtpTransceiver` method setCodecPreferences()
the transceiver's codecs given a list of `RTCRtpCodeCapability`
specifying the new preferences for each codec.

`rtcRtpTransceiver.setCodecPreferences(codecs)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/setCodecPreferences`
sourceraw docstring

set-direction!cljs

(set-direction! this val)

Property.

The read-only web.rtc.RTCRtpTransceiver property direction a string which indicates the transceiver's preferred directionality.

var direction = RTCRtpTransceiver.direction

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction

Property.

The read-only `web.rtc.RTCRtpTransceiver` property direction
a string which indicates the transceiver's preferred directionality.

`var direction = RTCRtpTransceiver.direction`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/direction`
sourceraw docstring

set-receiver!cljs

(set-receiver! this val)

Property.

The read-only receiver property of WebRTC's web.rtc.RTCRtpTransceiver indicates the web.rtc.RTCRtpReceiver responsible for receiving decoding incoming media data for the transceiver's stream.

var rtpReceiver = RTCRtpTransceiver.receiver;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver

Property.

The read-only receiver property of WebRTC's `web.rtc.RTCRtpTransceiver`
indicates the `web.rtc.RTCRtpReceiver` responsible for receiving
decoding incoming media data for the transceiver's stream.

`var rtpReceiver = RTCRtpTransceiver.receiver;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/receiver`
sourceraw docstring

set-sender!cljs

(set-sender! this val)

Property.

The read-only sender property of WebRTC's web.rtc.RTCRtpTransceiver indicates the web.audio.RTCRtpSender responsible for encoding sending outgoing media data for the transceiver's stream.

var rtpSender = RTCRtpTransceiver.sender;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender

Property.

The read-only sender property of WebRTC's `web.rtc.RTCRtpTransceiver`
indicates the `web.audio.RTCRtpSender` responsible for encoding
sending outgoing media data for the transceiver's stream.

`var rtpSender = RTCRtpTransceiver.sender;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/sender`
sourceraw docstring

set-stopped!cljs

(set-stopped! this val)

Property.

The read-only stopped property on the web.rtc.RTCRtpTransceiver indicates whether or not the transceiver's associated sender receiver have both been stopped.

var isStopped = RTCRtpTransceiver.stopped;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stopped

Property.

The read-only stopped property on the `web.rtc.RTCRtpTransceiver`
indicates whether or not the transceiver's associated sender
receiver have both been stopped.

`var isStopped = RTCRtpTransceiver.stopped;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stopped`
sourceraw docstring

stopcljs

(stop this)

Method.

The stop() method in the web.rtc.RTCRtpTransceiver interface stops the transceiver by stopping both the associated web.audio.RTCRtpSender web.rtc.RTCRtpReceiver.

RTCRtpTransceiver.stop()

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stop

Method.

The stop() method in the `web.rtc.RTCRtpTransceiver` interface
stops the transceiver by stopping both the associated `web.audio.RTCRtpSender`
`web.rtc.RTCRtpReceiver`.

`RTCRtpTransceiver.stop()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stop`
sourceraw docstring

stoppedcljs

(stopped this)

Property.

The read-only stopped property on the web.rtc.RTCRtpTransceiver indicates whether or not the transceiver's associated sender receiver have both been stopped.

var isStopped = RTCRtpTransceiver.stopped;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stopped

Property.

The read-only stopped property on the `web.rtc.RTCRtpTransceiver`
indicates whether or not the transceiver's associated sender
receiver have both been stopped.

`var isStopped = RTCRtpTransceiver.stopped;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stopped`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close