RTCRtpReceiver.getSynchronizationSources()

The getSynchronizationSources() method of the RTCRtpReceiver interface returns an array of RTCRtpContributingSource instances, each corresponding to one SSRC (synchronization source) identifier received by the current RTCRtpReceiver in the last ten seconds.

Syntax

var rtcRtpContributingSources = rtcRtpReceiver.getContributingSources()

Parameters

None.

Return value

An array of RTCRtpSynchronizationSource instances. Each instance describes one of the synchronization sources that provided data to the incoming stream in the past ten seconds.

As you'll see in the documentarion for RTCRtpSynchronizationSource, it inherits the properties of RTCRtpContributingSource, including timestamp, source, and audioLevel.

The synchronization source objects add a voiceActivityFlag property, which indicates if the last RTP packet received contained voice activity.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
getSynchronizationSources
73
≤79
59
No
60
12.1
73
73
59
52
12.2
11.0
audio_tracks_supported
73
79
59
No
60
?
73
73
59
52
?
11.0
video_tracks_supported
73
≤79
68
No
60
?
73
73
68
52
?
11.0

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getSynchronizationSources