FreeDATA/tnc/audio.py
2022-09-19 19:05:35 -04:00

87 lines
2.6 KiB
Python

"""
Gather information about audio devices.
"""
import atexit
import multiprocessing
import sounddevice as sd
import structlog
atexit.register(sd._terminate)
log = structlog.get_logger()
def get_audio_devices():
"""
return list of input and output audio devices in own process to avoid crashes of portaudio on raspberry pi
also uses a process data manager
"""
# we need to run this on Windows for multiprocessing support
# multiprocessing.freeze_support()
# multiprocessing.get_context("spawn")
# we need to reset and initialize sounddevice before running the multiprocessing part.
# If we are not doing this at this early point, not all devices will be displayed
sd._terminate()
sd._initialize()
with multiprocessing.Manager() as manager:
proxy_input_devices = manager.list()
proxy_output_devices = manager.list()
# print(multiprocessing.get_start_method())
proc = multiprocessing.Process(
target=fetch_audio_devices, args=(proxy_input_devices, proxy_output_devices)
)
proc.start()
proc.join()
return list(proxy_input_devices), list(proxy_output_devices)
def fetch_audio_devices(input_devices, output_devices):
"""
get audio devices from portaudio
Args:
input_devices: proxy variable for input devices
output_devices: proxy variable for output devices
Returns:
"""
devices = sd.query_devices(device=None, kind=None)
log.error("fetch_audio_devices", devices=devices)
# The use of set forces the list to contain only unique entries.
input_devs = set()
output_devs = set()
for device in devices:
# Use a try/except block because Windows doesn't have an audio device range
try:
name = device["name"]
max_output_channels = device["max_output_channels"]
max_input_channels = device["max_input_channels"]
except KeyError:
continue
except Exception as err:
print(err)
max_input_channels = 0
max_output_channels = 0
name = ""
if max_input_channels > 0:
input_devs.add(name)
if max_output_channels > 0:
output_devs.add(name)
for index, item in enumerate(input_devs):
log.error(f"Adding input device - id: {index}, name: {item}")
input_devices.append({"id": index, "name": item})
for index, item in enumerate(output_devs):
log.error(f"Adding output device - id: {index}, name: {item}")
output_devices.append({"id": index, "name": item})