Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
localSpeaking$
1get localSpeaking$(): Observable<boolean>
Observable that is true while the local participant is speaking (RMS level above the VAD threshold, with hold time to avoid flicker).
true
1call.localSpeaking$.subscribe((localSpeaking) => {2 console.log('localSpeaking:', localSpeaking);3});