audioOutputDevices$

View as MarkdownOpen in Claude
1get audioOutputDevices$(): Observable<MediaDeviceInfo[]>

Observable list of available audio output (speaker) devices.

audioOutputDevices

1get audioOutputDevices(): MediaDeviceInfo[]

Current snapshot of available audio output devices.

Examples

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