denoise$

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

Observable indicating whether noise reduction is active.

Inherited from

Participant.denoise$

denoise

get denoise(): boolean

Whether noise reduction (denoise) is active.

Inherited from

Participant.denoise

Examples

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