diff --git a/model.py b/model.py index bdade399..02b2eb96 100644 --- a/model.py +++ b/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():