localSpeaking$

View as MarkdownOpen in Claude
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).

Examples

1call.localSpeaking$.subscribe((localSpeaking) => {
2 console.log('localSpeaking:', localSpeaking);
3});