Windows executable! and Device List for Audio

This commit is contained in:
Thomas Herrmann 2022-03-30 21:27:51 +02:00
parent 19e90ce808
commit 41408de31c
2 changed files with 9 additions and 1 deletions

BIN
dist/underbridge.exe vendored Normal file

Binary file not shown.

View File

@ -38,6 +38,13 @@ def getMIDIDevice():
except:
displaymsg.set("Can´t find OP-Z : MIDI Error")
def getAudioDevice():
p = pyaudio.PyAudio()
info = p.get_host_api_info_by_index(0)
numdevices = info.get('deviceCount')
for i in range(0, numdevices):
if (p.get_device_info_by_host_api_device_index(0, i).get('maxInputChannels')) > 0:
print("Input Device id ", i, " - ", p.get_device_info_by_host_api_device_index(0, i).get('name'))
def getBPM():
global op_device
@ -204,6 +211,7 @@ def sequenceMaster():
getMIDIDevice()
time.sleep(1)
getAudioDevice()
displaymsg.set("Sequence started")
@ -238,7 +246,7 @@ def sequenceMaster():
pattern_nr = 0
sequenceMaster()
except:
displaymsg.set("OP-Z connection Problem :(")
displaymsg.set("OP-Z Audio Device Problem :(")
def cancelRec():
global cancel