Search completed in 0.84 seconds.
6 results for "bytesSent":
RTCIceCandidatePairStats.bytesSent - Web APIs
WebAPIRTCIceCandidatePairStatsbytesSent
the rtcicecandidatepairstats property bytessent indicates the total number of payload bytes—that is, bytes which aren't overhead such as headers or padding—that hve been sent so far on the connection described by the candidate pair.
... syntax sent = rtcicecandidatepairstats.bytessent; value an integer value indicating the total number of bytes sent so far on the connection described by this candidate pair.
... specifications specification status comment identifiers for webrtc's statistics apithe definition of 'rtcicecandidatepairstats.bytessent' in that specification.
RTCRemoteOutboundRtpStreamStats.localId - Web APIs
WebAPIRTCRemoteOutboundRtpStreamStatslocalId
nboundstats = findreportentry(startreport, "remoteid", startremoteoutbound.id); let endinboundstats = findreportentry(endreport, "remoteid", endremoteoutbound.id); let elapsedtime = (endremoteoutbound.timestamp - startremoteoutbound.timestamp) / 1000; /* in seconds */ let packetssent = endremoteoutbound.packetssent - startremoteoutbound.packetssent; let bytessent = endremoteoutbound.bytessent - startremoteoutbound.bytessent; let framesdecoded = endinboundstats.framesdecoded - startinboundstats.framesdecoded; let framerate = framesdecoded / elapsedtime; let timestring = ""; if (!isnan(elapsedtime)) { timestring = ` representing ${elapsedtime}s`; } let framestring = ""; if (...
...) { framestring = `decoded ${framesdecoded} frames for a frame rate of ${framerate.tofixed(2)} fps.<br>`; } let logentry = `<div class="stats-entry"><h2>report id: ${endremoteoutbound.id}</h2>` + `remote peer sent ${packetssent} packets ${timestring}.<br>` + `${framestring}` + `data size: ${bytessent} bytes.</div>`; statsbox.innerhtml += logentry; } else { statsbox.innerhtml += `<div class="stats-error">unable to find initial statistics for id ${endremoteoutbound.id}.</div>` } } statsbox.scrollto(0, statsbox.scrollheight); } } } here's what's going on in the networkteststop() function: after calling the rtcpeerconnection method getstats(...
... similarly, the number of bytes sent during this interval—bytessent—is calculated by subtracting the starting statistics object's bytessent property from that of the ending statistics.
Index - Web APIs
WebAPIIndex
3289 rtcicecandidatepairstats.bytessent api, candidate, candidate pair, ice, pair, rtcicecandidatepairstats, sent, statistics, stats, transmitted, webrtc, webrtc api, bytessent, rtc the rtcicecandidatepairstats property bytessent indicates the total number of payload bytes—that is, bytes which aren't overhead such as headers or padding—that hve been sent so far on the connection described by the candidate pair.
RTCIceCandidatePairStats.bytesReceived - Web APIs
WebAPIRTCIceCandidatePairStatsbytesReceived
the bytessent property reports the number of bytes sent so far on the described connection.
RTCIceCandidatePairStats - Web APIs
WebAPIRTCIceCandidatePairStats
bytessent optional the total number of payload bytes sent (that is, the total number of bytes sent minus any headers, padding, or other administrative overhead) so far on this candidate pair.
RTCOutboundRtpStreamStats - Web APIs
WebAPIRTCOutboundRtpStreamStats
retransmittedbytessent the total number of bytes that have been retransmitted for this source as of the time the statistics were sampled.