echoCancellation$

View as MarkdownOpen in Claude
get echoCancellation$(): Observable<boolean | undefined>

Observable indicating whether echo cancellation is enabled.

echoCancellation

get echoCancellation(): boolean

Whether echo cancellation is enabled.

Examples

participant.echoCancellation$.subscribe((echoCancellation) => {
console.log('echoCancellation:', echoCancellation);
});