Back to Content

RTCOutboundRtpStreamStats: totalEncodedBytesTarget property

files/en-us/web/api/rtcoutboundrtpstreamstats/totalencodedbytestarget/index.md

latest971 B
Original Source

{{APIRef("WebRTC")}}{{SeeCompatTable}}

The totalEncodedBytesTarget property of the {{domxref("RTCOutboundRtpStreamStats")}} dictionary represents the sum of the target frame sizes for all of the frames encoded so far.

The codec has a target maximum size for each frame that it is asked to compress, in bytes. This property indicates the cumulative total of the target sizes for each frame at the current time. This will probably differ from the total of the actual frame sizes. You can compare to {{domxref("RTCOutboundRtpStreamStats/bytesSent","bytesSent")}} in order to estimate how closely the codec is matching its target.

The value increases every time {{domxref("RTCOutboundRtpStreamStats/framesEncoded","framesEncoded")}} goes up.

[!NOTE] The property is undefined for audio streams.

Value

The sum of the target frame sizes in bytes, represented as a positive integer.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}