Back to Content

RTCInboundRtpStreamStats: bytesReceived property

files/en-us/web/api/rtcinboundrtpstreamstats/bytesreceived/index.md

latest610 B
Original Source

{{APIRef("WebRTC")}}

The bytesReceived property of the {{domxref("RTCInboundRtpStreamStats")}} dictionary indicates the total number of bytes received so far from this synchronization source (SSRC), not including header and padding bytes.

The value can be used to calculate an approximation of the average media data rate:

js
avgDataRate = rtcInboundRtpStreamStats.bytesReceived / elapsedTime;

The property value is reset to zero if the sender's SSRC identifier changes for any reason.

Value

A positive integer.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}