//WIP Sounddevice migration

Initial
This commit is contained in:
Logan Cusano
2022-04-09 23:54:28 -04:00
parent 31d5f8139c
commit 80f83f2026
2 changed files with 54 additions and 77 deletions

View File

@@ -3,7 +3,7 @@ import logging
import os
from datetime import date
from os.path import exists
from NoiseGatev2 import AudioStream
from NoiseGatev2 import AudioStream, query_devices
PDB_ACCEPTABLE_HANDLERS = {'gqrx': {
'Modes': ['wfm', 'fm']
@@ -102,7 +102,7 @@ def write_config_file(**kwargs):
def get_device_list():
list_of_devices = AudioStream().list_devices()
list_of_devices = query_devices().items()
LOGGER.debug(list_of_devices)
return list_of_devices