🐛[bugfix] Model : getInputDefaultDeviceを取得するように修正
This commit is contained in:
6
model.py
6
model.py
@@ -377,9 +377,13 @@ class Model:
|
||||
def getListInputHost():
|
||||
return [host for host in getInputDevices().keys()]
|
||||
|
||||
@staticmethod
|
||||
def getInputDefaultDevice():
|
||||
return getInputDevices().get(config.CHOICE_MIC_HOST, [{"name": "NoDevice"}])[0]["name"]
|
||||
|
||||
@staticmethod
|
||||
def getListInputDevice():
|
||||
return [device["name"] for device in getInputDevices()[config.CHOICE_MIC_HOST]]
|
||||
return [device["name"] for device in getInputDevices().get(config.CHOICE_MIC_HOST, [{"name": "NoDevice"}])]
|
||||
|
||||
@staticmethod
|
||||
def getListOutputDevice():
|
||||
|
||||
Reference in New Issue
Block a user