The WebRTC API's RTCInboundRtpStreamStats dictionary, based upon
and rtc.RTCStats
, contains statistics related to the receiving
of an RTP stream on the local end of the rtc.RTCPeerConnection
.
The WebRTC API's RTCInboundRtpStreamStats dictionary, based upon and `rtc.RTCStats`, contains statistics related to the receiving of an RTP stream on the local end of the `rtc.RTCPeerConnection`.
(average-rtcp-interval this)
Property.
The averageRtcpInterval property of the rtc.RTCInboundRtpStreamStats
is a floating-point value indicating the average RTCP transmission
in seconds.
var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval
Property. The averageRtcpInterval property of the `rtc.RTCInboundRtpStreamStats` is a floating-point value indicating the average RTCP transmission in seconds. `var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval`
(bytes-received this)
Property.
The rtc.RTCInboundRtpStreamStats
dictionary's bytesReceived
is an integer value which indicates the total number of bytes
so far from this synchronization source (SSRC).
var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived
Property. The `rtc.RTCInboundRtpStreamStats` dictionary's bytesReceived is an integer value which indicates the total number of bytes so far from this synchronization source (SSRC). `var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived`
(fec-packets-discarded this)
Property.
The fecPacketsDiscarded property of the rtc.RTCInboundRtpStreamStats
is a numeric value indicating the number of RTP Forward Error
(FEC) packets that have been discarded.
var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded
Property. The fecPacketsDiscarded property of the `rtc.RTCInboundRtpStreamStats` is a numeric value indicating the number of RTP Forward Error (FEC) packets that have been discarded. `var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded`
(fec-packets-received this)
Property.
The fecPacketsReceived property of the rtc.RTCInboundRtpStreamStats
indicates how many Forward Error Correction (FEC) packets have
received by this RTP receiver from the remote peer.
var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived
Property. The fecPacketsReceived property of the `rtc.RTCInboundRtpStreamStats` indicates how many Forward Error Correction (FEC) packets have received by this RTP receiver from the remote peer. `var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived`
(fir-count this)
Property.
The firCount property of the rtc.RTCInboundRtpStreamStats
dictionary
the number of Full Intra Request (FIR) packets have been sent
the receiver to the sender.
var firCount = rtcInboundRtpStreamStats.firCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount
Property. The firCount property of the `rtc.RTCInboundRtpStreamStats` dictionary the number of Full Intra Request (FIR) packets have been sent the receiver to the sender. `var firCount = rtcInboundRtpStreamStats.firCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount`
(frames-decoded this)
Property.
The framesDecoded property of the rtc.RTCInboundRtpStreamStats
indicates the total number of frames which have been decoded
for this media source.
var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded
Property. The framesDecoded property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of frames which have been decoded for this media source. `var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded`
(last-packet-received-timestamp this)
Property.
The lastPacketReceivedTimestamp property of the rtc.RTCInboundRtpStreamStats
indicates the time at which the most recently received packet
from this source.
var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp
Property. The lastPacketReceivedTimestamp property of the `rtc.RTCInboundRtpStreamStats` indicates the time at which the most recently received packet from this source. `var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp`
(nack-count this)
Property.
The nackCount property of the rtc.RTCInboundRtpStreamStats
is a numeric value indicating the number of times the receiver
a NACK packet to the sender.
var nackCount = rtcInboundRtpStreamStats.nackCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount
Property. The nackCount property of the `rtc.RTCInboundRtpStreamStats` is a numeric value indicating the number of times the receiver a NACK packet to the sender. `var nackCount = rtcInboundRtpStreamStats.nackCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount`
(packets-duplicated this)
Property.
The packetsDuplicated property of the rtc.RTCInboundRtpStreamStats
indicates the total number of packets discarded because they
duplicates of previously-received packets.
var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated
Property. The packetsDuplicated property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of packets discarded because they duplicates of previously-received packets. `var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated`
(packets-failed-decryption this)
Property.
The packetsFailedDecryption property of the rtc.RTCInboundRtpStreamStats
indicates the total number of RTP packets which failed to be
successfully after being received by the local end of the connection
this session.
var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption
Property. The packetsFailedDecryption property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of RTP packets which failed to be successfully after being received by the local end of the connection this session. `var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption`
(per-dscp-packets-received this)
Property.
The perDscpPacketsReceived property of the rtc.RTCInboundRtpStreamStats
is a record comprised of key/value pairs in which each key is
string representation of a Differentiated Services Code Point
the value is the number of packets received for that DCSP.
var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived
Property. The perDscpPacketsReceived property of the `rtc.RTCInboundRtpStreamStats` is a record comprised of key/value pairs in which each key is string representation of a Differentiated Services Code Point the value is the number of packets received for that DCSP. `var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived`
(pli-count this)
Property.
The pliCount property of the rtc.RTCInboundRtpStreamStats
dictionary
the number of times the rtc.RTCRtpReceiver
described by these
sent a Picture Loss Indication (PLI) packet to the sender.
var pliCount = RTCInboundRtpStreamStats.pliCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount
Property. The pliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary the number of times the `rtc.RTCRtpReceiver` described by these sent a Picture Loss Indication (PLI) packet to the sender. `var pliCount = RTCInboundRtpStreamStats.pliCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount`
(qp-sum this)
Property.
The qpSum property of the rtc.RTCInboundRtpStreamStats
dictionary
a value generated by adding the Quantization Parameter (QP) values
every frame sent or received to date on the video track corresponding
this RTCInboundRtpStreamStats object.
var qpSum = rtcInboundRtpStreamStats.qpSum;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum
Property. The qpSum property of the `rtc.RTCInboundRtpStreamStats` dictionary a value generated by adding the Quantization Parameter (QP) values every frame sent or received to date on the video track corresponding this RTCInboundRtpStreamStats object. `var qpSum = rtcInboundRtpStreamStats.qpSum;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum`
(receiver-id this)
Property.
The receiverId property of the rtc.RTCInboundRtpStreamStats
specifies the web.id
of the rtc.RTCAudioReceiverStats
or
object representing the rtc.RTCRtpReceiver
receiving the stream.
var receiverStatsId = rtcInboundRtpStreamStats.receiverId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId
Property. The receiverId property of the `rtc.RTCInboundRtpStreamStats` specifies the `web.id` of the `rtc.RTCAudioReceiverStats` or object representing the `rtc.RTCRtpReceiver` receiving the stream. `var receiverStatsId = rtcInboundRtpStreamStats.receiverId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId`
(remote-id this)
Property.
The remoteId property of the rtc.RTCInboundRtpStreamStats
dictionary
the web.id
of the rtc.RTCRemoteOutboundRtpStreamStats
object
the remote peer's rtc.RTCRtpSender
which is sending the media
the local peer.
var remoteStatsId = rtcInboundRtpStreamStats.remoteId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId
Property. The remoteId property of the `rtc.RTCInboundRtpStreamStats` dictionary the `web.id` of the `rtc.RTCRemoteOutboundRtpStreamStats` object the remote peer's `rtc.RTCRtpSender` which is sending the media the local peer. `var remoteStatsId = rtcInboundRtpStreamStats.remoteId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId`
(set-average-rtcp-interval! this val)
Property.
The averageRtcpInterval property of the rtc.RTCInboundRtpStreamStats
is a floating-point value indicating the average RTCP transmission
in seconds.
var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval
Property. The averageRtcpInterval property of the `rtc.RTCInboundRtpStreamStats` is a floating-point value indicating the average RTCP transmission in seconds. `var averageRtcpInterval = rtcInboundRtpStreamStats.averageRtcpInterval;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/averageRtcpInterval`
(set-bytes-received! this val)
Property.
The rtc.RTCInboundRtpStreamStats
dictionary's bytesReceived
is an integer value which indicates the total number of bytes
so far from this synchronization source (SSRC).
var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived
Property. The `rtc.RTCInboundRtpStreamStats` dictionary's bytesReceived is an integer value which indicates the total number of bytes so far from this synchronization source (SSRC). `var bytesReceived = rtcInboundRtpStreamStats.bytesReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/bytesReceived`
(set-fec-packets-discarded! this val)
Property.
The fecPacketsDiscarded property of the rtc.RTCInboundRtpStreamStats
is a numeric value indicating the number of RTP Forward Error
(FEC) packets that have been discarded.
var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded
Property. The fecPacketsDiscarded property of the `rtc.RTCInboundRtpStreamStats` is a numeric value indicating the number of RTP Forward Error (FEC) packets that have been discarded. `var fecPacketsDiscarded = rtcInboundRtpStreamStats.fecPacketsDiscarded;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsDiscarded`
(set-fec-packets-received! this val)
Property.
The fecPacketsReceived property of the rtc.RTCInboundRtpStreamStats
indicates how many Forward Error Correction (FEC) packets have
received by this RTP receiver from the remote peer.
var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived
Property. The fecPacketsReceived property of the `rtc.RTCInboundRtpStreamStats` indicates how many Forward Error Correction (FEC) packets have received by this RTP receiver from the remote peer. `var fecPacketsReceived = rtcInboundRtpStreamStats.fecPacketsReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/fecPacketsReceived`
(set-fir-count! this val)
Property.
The firCount property of the rtc.RTCInboundRtpStreamStats
dictionary
the number of Full Intra Request (FIR) packets have been sent
the receiver to the sender.
var firCount = rtcInboundRtpStreamStats.firCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount
Property. The firCount property of the `rtc.RTCInboundRtpStreamStats` dictionary the number of Full Intra Request (FIR) packets have been sent the receiver to the sender. `var firCount = rtcInboundRtpStreamStats.firCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/firCount`
(set-frames-decoded! this val)
Property.
The framesDecoded property of the rtc.RTCInboundRtpStreamStats
indicates the total number of frames which have been decoded
for this media source.
var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded
Property. The framesDecoded property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of frames which have been decoded for this media source. `var framesDecoded = rtcInboundRtpStreamStats.framesDecoded;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/framesDecoded`
(set-last-packet-received-timestamp! this val)
Property.
The lastPacketReceivedTimestamp property of the rtc.RTCInboundRtpStreamStats
indicates the time at which the most recently received packet
from this source.
var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp
Property. The lastPacketReceivedTimestamp property of the `rtc.RTCInboundRtpStreamStats` indicates the time at which the most recently received packet from this source. `var lastPacketTimestamp = rtcInboundRtpStreamStats.lastPacketReceivedTimestamp;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/lastPacketReceivedTimestamp`
(set-nack-count! this val)
Property.
The nackCount property of the rtc.RTCInboundRtpStreamStats
is a numeric value indicating the number of times the receiver
a NACK packet to the sender.
var nackCount = rtcInboundRtpStreamStats.nackCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount
Property. The nackCount property of the `rtc.RTCInboundRtpStreamStats` is a numeric value indicating the number of times the receiver a NACK packet to the sender. `var nackCount = rtcInboundRtpStreamStats.nackCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/nackCount`
(set-packets-duplicated! this val)
Property.
The packetsDuplicated property of the rtc.RTCInboundRtpStreamStats
indicates the total number of packets discarded because they
duplicates of previously-received packets.
var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated
Property. The packetsDuplicated property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of packets discarded because they duplicates of previously-received packets. `var packetsDuplicated = rtcInboundRtpStreamStats.packetsDuplicated;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsDuplicated`
(set-packets-failed-decryption! this val)
Property.
The packetsFailedDecryption property of the rtc.RTCInboundRtpStreamStats
indicates the total number of RTP packets which failed to be
successfully after being received by the local end of the connection
this session.
var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption
Property. The packetsFailedDecryption property of the `rtc.RTCInboundRtpStreamStats` indicates the total number of RTP packets which failed to be successfully after being received by the local end of the connection this session. `var packetsFailedDecryption = rtcInboundRtpStreamStats.packetsFailedDecryption;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/packetsFailedDecryption`
(set-per-dscp-packets-received! this val)
Property.
The perDscpPacketsReceived property of the rtc.RTCInboundRtpStreamStats
is a record comprised of key/value pairs in which each key is
string representation of a Differentiated Services Code Point
the value is the number of packets received for that DCSP.
var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived
Property. The perDscpPacketsReceived property of the `rtc.RTCInboundRtpStreamStats` is a record comprised of key/value pairs in which each key is string representation of a Differentiated Services Code Point the value is the number of packets received for that DCSP. `var perDscpPacketsReceived = rtcInboundRtpStreamStats.perDscpPacketsReceived;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/perDscpPacketsReceived`
(set-pli-count! this val)
Property.
The pliCount property of the rtc.RTCInboundRtpStreamStats
dictionary
the number of times the rtc.RTCRtpReceiver
described by these
sent a Picture Loss Indication (PLI) packet to the sender.
var pliCount = RTCInboundRtpStreamStats.pliCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount
Property. The pliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary the number of times the `rtc.RTCRtpReceiver` described by these sent a Picture Loss Indication (PLI) packet to the sender. `var pliCount = RTCInboundRtpStreamStats.pliCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/pliCount`
(set-qp-sum! this val)
Property.
The qpSum property of the rtc.RTCInboundRtpStreamStats
dictionary
a value generated by adding the Quantization Parameter (QP) values
every frame sent or received to date on the video track corresponding
this RTCInboundRtpStreamStats object.
var qpSum = rtcInboundRtpStreamStats.qpSum;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum
Property. The qpSum property of the `rtc.RTCInboundRtpStreamStats` dictionary a value generated by adding the Quantization Parameter (QP) values every frame sent or received to date on the video track corresponding this RTCInboundRtpStreamStats object. `var qpSum = rtcInboundRtpStreamStats.qpSum;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/qpSum`
(set-receiver-id! this val)
Property.
The receiverId property of the rtc.RTCInboundRtpStreamStats
specifies the web.id
of the rtc.RTCAudioReceiverStats
or
object representing the rtc.RTCRtpReceiver
receiving the stream.
var receiverStatsId = rtcInboundRtpStreamStats.receiverId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId
Property. The receiverId property of the `rtc.RTCInboundRtpStreamStats` specifies the `web.id` of the `rtc.RTCAudioReceiverStats` or object representing the `rtc.RTCRtpReceiver` receiving the stream. `var receiverStatsId = rtcInboundRtpStreamStats.receiverId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/receiverId`
(set-remote-id! this val)
Property.
The remoteId property of the rtc.RTCInboundRtpStreamStats
dictionary
the web.id
of the rtc.RTCRemoteOutboundRtpStreamStats
object
the remote peer's rtc.RTCRtpSender
which is sending the media
the local peer.
var remoteStatsId = rtcInboundRtpStreamStats.remoteId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId
Property. The remoteId property of the `rtc.RTCInboundRtpStreamStats` dictionary the `web.id` of the `rtc.RTCRemoteOutboundRtpStreamStats` object the remote peer's `rtc.RTCRtpSender` which is sending the media the local peer. `var remoteStatsId = rtcInboundRtpStreamStats.remoteId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/remoteId`
(set-sli-count! this val)
Property.
The sliCount property of the rtc.RTCInboundRtpStreamStats
dictionary
how many Slice Loss Indication (SLI) packets the rtc.RTCRtpReceiver
which this object provdes statistics sent to the remote rtc.RTCRtpSender
.
var sliCount = rtcInboundRtpStreamStats.sliCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount
Property. The sliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary how many Slice Loss Indication (SLI) packets the `rtc.RTCRtpReceiver` which this object provdes statistics sent to the remote `rtc.RTCRtpSender`. `var sliCount = rtcInboundRtpStreamStats.sliCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount`
(set-track-id! this val)
Property.
The trackId property of the rtc.RTCInboundRtpStreamStats
dictionary
the web.id
of the rtc.RTCReceiverAudioTrackAttachmentStats
rtc.RTCReceiverVideoTrackAttachmentStats
object representing
media.MediaStreamTrack
which is receiving the incoming media.
var trackStatsId = rtcInboundRtpStreamStats.trackId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId
Property. The trackId property of the `rtc.RTCInboundRtpStreamStats` dictionary the `web.id` of the `rtc.RTCReceiverAudioTrackAttachmentStats` `rtc.RTCReceiverVideoTrackAttachmentStats` object representing `media.MediaStreamTrack` which is receiving the incoming media. `var trackStatsId = rtcInboundRtpStreamStats.trackId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId`
(sli-count this)
Property.
The sliCount property of the rtc.RTCInboundRtpStreamStats
dictionary
how many Slice Loss Indication (SLI) packets the rtc.RTCRtpReceiver
which this object provdes statistics sent to the remote rtc.RTCRtpSender
.
var sliCount = rtcInboundRtpStreamStats.sliCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount
Property. The sliCount property of the `rtc.RTCInboundRtpStreamStats` dictionary how many Slice Loss Indication (SLI) packets the `rtc.RTCRtpReceiver` which this object provdes statistics sent to the remote `rtc.RTCRtpSender`. `var sliCount = rtcInboundRtpStreamStats.sliCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/sliCount`
(track-id this)
Property.
The trackId property of the rtc.RTCInboundRtpStreamStats
dictionary
the web.id
of the rtc.RTCReceiverAudioTrackAttachmentStats
rtc.RTCReceiverVideoTrackAttachmentStats
object representing
media.MediaStreamTrack
which is receiving the incoming media.
var trackStatsId = rtcInboundRtpStreamStats.trackId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId
Property. The trackId property of the `rtc.RTCInboundRtpStreamStats` dictionary the `web.id` of the `rtc.RTCReceiverAudioTrackAttachmentStats` `rtc.RTCReceiverVideoTrackAttachmentStats` object representing `media.MediaStreamTrack` which is receiving the incoming media. `var trackStatsId = rtcInboundRtpStreamStats.trackId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCInboundRtpStreamStats/trackId`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close