RTCAudioSourceStats
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since May 2023.
* Some parts of this feature may have varying levels of support.
TheRTCAudioSourceStats dictionary of theWebRTC API provides statistics information about an audio track (MediaStreamTrack) that is attached to one or more senders (RTCRtpSender).
These statistics can be obtained by iterating theRTCStatsReport returned byRTCRtpSender.getStats() orRTCPeerConnection.getStats() until you find a report with thetype ofmedia-source and akind ofaudio.
Note:For audio information about remotely sourced tracks (that are being received), seeRTCInboundRtpStreamStats.
In this article
Instance properties
audioLevelExperimentalOptionalA number that represents the audio level of the media source.
totalAudioEnergyExperimentalOptionalA number that represents the total audio energy of the media source over the lifetime of the stats object.
totalSamplesDurationExperimentalOptionalA number that represents the total duration of all samples produced by the media source over the lifetime of the stats object.
Common media-source properties
The following properties are present in bothRTCAudioSourceStats andRTCVideoSourceStats:
trackIdentifierA string that contains the
idvalue of theMediaStreamTrackassociated with the audio source.kindA string indicating whether this object represents stats for a video source or a media source. For an
RTCAudioSourceStatsthis will always beaudio.
Common instance properties
The following properties are common to all statistics objects.
idA string that uniquely identifies the object that is being monitored to produce this set of statistics.
timestampA
DOMHighResTimeStampobject indicating the time at which the sample was taken for this statistics object.typeA string with the value
"media-source", indicating that the object is an instance of eitherRTCAudioSourceStatsorRTCVideoSourceStats.
Description
The interface provides statistics about an audio media source attached to one or more senders.The information includes the current audio level, averaged over a short (implementation dependent) duration.
The statistics also include the accumulated total energy and total sample duration, at a particular timestamp.The totals can be used to determine the average audio level over the lifetime of the stats object.You can calculate a root mean square (RMS) value in the same units asaudioLevel using the following formula:
You can also use the accumulated totals to calculate the average audio level over an arbitrary time period.
The total audio energy of the stats object is accumulated by adding the energy of every sample over the lifetime of the stats object, while the total duration is accumulated by adding the duration of each sample.The energy of each sample is determined using the following formula, wheresample_level is the level of the sample,max_level is the highest-intensity encodable value, andduration is the duration of the sample in seconds:
The average audio level between any two differentgetStats() calls, over any duration, can be calculated using the following equation:
Examples
This example shows how you might iterate the stats object returned fromRTCRtpSender.getStats() to get the audio source stats, and then extract theaudioLevel.
// where sender is an RTCRtpSenderconst stats = await sender.getStats();let audioSourceStats = null;stats.forEach((report) => { if (report.type === "media-source" && report.kind==="audio") { audioSourceStats = report; break; }});const audioLevel = audioSourceStats?.audioLevel;Specifications
| Specification |
|---|
| Identifiers for WebRTC's Statistics API> # dom-rtcaudiosourcestats> |