Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
videoInputDisabled$
1get videoInputDisabled$(): Observable<boolean>
Observable that emits true when video input is disabled (receive-only).
true
1get videoInputDisabled(): boolean
Whether video input is currently disabled.
1client.videoInputDisabled$.subscribe((videoInputDisabled) => {2 console.log('videoInputDisabled:', videoInputDisabled);3});