+
+
Carte son d'entrée (Input)
+
+
+
+
+
Carte son de sortie (Output)
+
+
+
+
+
Sample Rate
+
+
+
+
+
+
+
+ {currentDevice && Object.keys(currentDevice).length > 0 && (
+
+
Configuration actuelle
+
+
Input Device ID: {currentDevice.inputDeviceId ?? 'Non configuré'}
+
Output Device ID: {currentDevice.outputDeviceId ?? 'Non configuré'}
+
Sample Rate: {currentDevice.sampleRate ?? 48000} Hz
+
+
+ )}
+
+
+
Toutes les cartes son disponibles
+
+
+
+ | ID |
+ Nom |
+ Entrées |
+ Sorties |
+ Sample Rate |
+ API |
+
+
+
+ {audioDevices.map(device => (
+
+ | {device.id} |
+ {device.name} |
+ {device.maxInputChannels} |
+ {device.maxOutputChannels} |
+ {device.defaultSampleRate} Hz |
+ {device.hostAPIName} |
+
+ ))}
+
+
+
+