Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
videoInputDevices$
1get videoInputDevices$(): Observable<MediaDeviceInfo[]>
Observable list of available video input (camera) devices.
1get videoInputDevices(): MediaDeviceInfo[]
Current snapshot of available video input devices.
1client.videoInputDevices$.subscribe((videoInputDevices) => {2 console.log('videoInputDevices:', videoInputDevices);3});