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.
var rtcRtpContributingSources = rtcRtpReceiver.getContributingSources()
None.
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.
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'getSynchronizationSources()' in that specification. | Candidate Recommendation | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | No | ? | 59 | ? | No | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | No | ? | 59
|
No | ? | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpReceiver/getSynchronizationSources