File was renamed from PythonExample_Recording_Startup.py |
| | |
| | | #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 |
| | |
| | | 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.") |
| | |
| | | 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 = [] |
| | | |