From 87213d458900e368bcf786b237da6f06ea9c14c7 Mon Sep 17 00:00:00 2001 From: Christophe Weis <christopheweis@hotmail.fr> Date: Sat, 15 Mar 2025 17:40:32 +0100 Subject: [PATCH] fix: device detection and device index --- Python-Zylia_STARTUP.py | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/PythonExample_Recording_Startup.py b/Python-Zylia_STARTUP.py similarity index 91% rename from PythonExample_Recording_Startup.py rename to Python-Zylia_STARTUP.py index 2299f88..a717de3 100644 --- a/PythonExample_Recording_Startup.py +++ b/Python-Zylia_STARTUP.py @@ -25,6 +25,12 @@ #file_name = str(input("Please enter a name for the output file: ")) ''' +# Device Index +for i in range(p.get_device_count()): + device_info = p.get_device_info_by_index(i) + if "Zylia" in device_info['name']: + device_index = i + # Parameters CHANNELS = 19 # Number of channels SAMPLE_RATE = 48000 @@ -35,7 +41,7 @@ MONITORING = True # To write to a text file as long as the device is recording # Get the chosen device's info to validate it can support the entered number of channels and 48kHz -device_info = p.get_device_info_by_index(2) +device_info = p.get_device_info_by_index(device_index) max_channels = device_info['maxInputChannels'] if max_channels < CHANNELS: print(f"Error: The selected device only supports {max_channels} channels, but {CHANNELS} channels are required.") @@ -47,10 +53,10 @@ channels=CHANNELS, rate=SAMPLE_RATE, input=True, - input_device_index=2, + input_device_index=device_index, frames_per_buffer=CHUNK) -print(f"Recording {RECORD_SECONDS} seconds of audio from device ID {2}...") +print(f"Recording {RECORD_SECONDS} seconds of audio from device ID {device_index}...") frames = [] -- Gitblit v1.9.1