diff --git a/helpers.py b/helpers.py index 4da88103..bfb749d0 100644 --- a/helpers.py +++ b/helpers.py @@ -113,19 +113,3 @@ def setup_logging(): #'ERROR' : 31, # red #'CRITICAL': 41, # white on red bg - - -def list_audio_devices(): - p = pyaudio.PyAudio() - devices = [] - for x in range(0, p.get_device_count()): - devices.append(f"{x} - {p.get_device_info_by_index(x)['name']}") - - for line in devices: - print(line) - - - - - - diff --git a/main.py b/main.py index cb09fe6c..05234e9c 100644 --- a/main.py +++ b/main.py @@ -23,9 +23,6 @@ if __name__ == '__main__': # config logging helpers.setup_logging() - - # list audio devices - helpers.list_audio_devices() #--------------------------------------------GET PARAMETER INPUTS