web api interface
RTCRemoteOutboundRtpStreamStats
The RTCRemoteOutboundRtpStreamStats dictionary of the WebRTC API is used to report statistics from a remote endpoint about its outbound RTP stream.
This will correspond to an inbound stream that is currently being received by the local RTCPeerConnection object.
The statistics can be obtained by iterating the RTCStatsReport returned by getStats() until you find a report with the type of remote-outbound-rtp.
Instance properties
Remote outbound specific statistics
localIdOptional- : A string which is used to find the local
RTCInboundRtpStreamStatsobject that shares the same synchronization source (SSRC).
- : A string which is used to find the local
remoteTimestampOptional- : A
DOMHighResTimeStampspecifying the timestamp (on the remote device) at which the statistics in theRTCRemoteOutboundRtpStreamStatsobject were sent by the remote endpoint. This is different from thetimestamp; it represents the time at which the object’s statistics were received or generated by the local endpoint.
- : A
reportsSentOptional Experimental- : A positive integer indicating the total number of RTCP Sender Report (SR) blocks sent for this synchronization source (SSRC).
roundTripTimeMeasurementsOptional Experimental- : A positive number that represents the total number of valid round trip time measurements received for this synchronization source (SSRC).
totalRoundTripTimeOptional Experimental- : A number indicating the cumulative sum of all round trip time measurements since the beginning of the session, in seconds.
The average round trip time can be computed by dividing
totalRoundTripTimebyroundTripTimeMeasurements.
- : A number indicating the cumulative sum of all round trip time measurements since the beginning of the session, in seconds.
The average round trip time can be computed by dividing
Sent RTP stream statistics
bytesSentOptional- : A positive integer indicating the total number of bytes sent for this SSRC, including retransmissions.
packetsSentOptional- : A positive integer indicating the total number of RTP packets sent for this SSRC, including retransmissions.
Common RTP stream statistics
codecIdOptional- : A string that uniquely identifies the object that was inspected to produce the
RTCCodecStatsreport associated with this RTP stream.
- : A string that uniquely identifies the object that was inspected to produce the
kind- : A string indicating whether the
MediaStreamTrackassociated with the stream is an audio or a video track.
- : A string indicating whether the
ssrc- : A positive integer that identifies the synchronization source (SSRC) of the RTP packets in this stream.
transportIdOptional- : A string that uniquely identifies the object that was inspected to produce the
RTCTransportStatsreport associated with this RTP stream.
- : A string that uniquely identifies the object that was inspected to produce the
Common instance properties
The following properties are common to all WebRTC statistics objects.
id- : A string that uniquely identifies the object that is being monitored to produce this set of statistics.
timestamp- : A
DOMHighResTimeStampobject indicating the time at which the sample was taken for this statistics object.
- : A
type- : A string with the value
"remote-outbound-rtp", indicating the type of statistics that the object contains.
- : A string with the value
Usage notes
The RTCRemoteOutboundRtpStreamStats object’s remoteTimestamp property provides statistics based on the received data’s NTP timestamp taken from an RTCP Sender Report (SR) block.
Be aware that the remote clock may not be synchronized with the local clock (either in current time or speed at which time elapses).