denoise$

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

Observable indicating whether noise reduction is active.

Inherited from

Participant.denoise$

denoise

1get denoise(): boolean

Whether noise reduction (denoise) is active.

Inherited from

Participant.denoise

Examples

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