From 6f8a7878c575ceedca82895ef0a99c421ecdcb06 Mon Sep 17 00:00:00 2001 From: sbahling Date: Thu, 4 Jun 2020 19:08:21 +0200 Subject: Add -d/--device option to specify path of the snd device rename the GUID option to -g/--guid --- tascam_fw_console/console.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tascam_fw_console/console.py') diff --git a/tascam_fw_console/console.py b/tascam_fw_console/console.py index 758888d..6f5dcc8 100644 --- a/tascam_fw_console/console.py +++ b/tascam_fw_console/console.py @@ -94,15 +94,23 @@ class RunningStatusThread(): time.sleep(self.interval) + print('Server thread shutdown.') + + def stop_thread(self): + self.pill2kill.set() + self.thread.join() + class Console(): - def __init__(self, card_id=None, guid=None): + def __init__(self, card_id=None, guid=None, device=None): fullpath = None if guid: fullpath = self._seek_snd_unit_from_guid(card_id) elif card_id: fullpath = '/dev/snd/hwC{0}D0'.format(card_id) + elif device: + fullpath = device else: try: units = list_units() -- cgit v1.2.3