audioOutputDevices$

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

Observable list of available audio output (speaker) devices.

audioOutputDevices

get audioOutputDevices(): MediaDeviceInfo[]

Current snapshot of available audio output devices.

Examples

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