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