inputSensitivity$

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

Observable of the conference-only microphone energy/gate sensitivity level for this member. Routes through the conferencing mix engine and has no effect on 1:1 WebRTC calls. Populated from member.updated events for conference members.

See setAudioInputSensitivity

inputSensitivity

1get inputSensitivity(): number | undefined

Current conference-only microphone sensitivity/gate level, or undefined if not set. Applies only to conference members.

Examples

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