Native support and integration of Zylia microphones on RaspberryPi platform
2 files renamed
12 ■■■■ changed files
Python-Zylia.py patch | view | raw | blame | history
Python-Zylia_STARTUP.py 12 ●●●● patch | view | raw | blame | history
Python-Zylia.py
Python-Zylia_STARTUP.py
File was renamed from PythonExample_Recording_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 = []