Hiyve Components - v1.0.0
    Preparing search index...

    Interface SelectedDevices

    Currently selected devices for audio/video input and output.

    Each property holds the deviceId of the selected device. All properties are optional - undefined means no specific device selected (use system default).

    const [selectedDevices, setSelectedDevices] = useState<SelectedDevices>({
    videoInput: 'camera-device-id',
    audioInput: 'microphone-device-id',
    audioOutput: 'speaker-device-id',
    });
    interface SelectedDevices {
        audioInput?: string;
        audioOutput?: string;
        videoInput?: string;
    }
    Index

    Properties

    audioInput?: string

    Selected audio input (microphone) device ID

    audioOutput?: string

    Selected audio output (speaker) device ID

    videoInput?: string

    Selected video input (camera) device ID