summaryrefslogtreecommitdiff
path: root/tascam_fw_console
diff options
context:
space:
mode:
Diffstat (limited to 'tascam_fw_console')
-rw-r--r--tascam_fw_console/cli.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tascam_fw_console/cli.py b/tascam_fw_console/cli.py
index 401a953..7db084b 100644
--- a/tascam_fw_console/cli.py
+++ b/tascam_fw_console/cli.py
@@ -28,9 +28,9 @@ Options:
-c CARD_NUM --card=CARD_NUM Number of the ALSA sound card
-d GUID --device=GUID GUID of the FW unit
-I IP --listen-ip=IP IP to listen on [default: 127.0.0.1]
- -P PORT --listen-port=PORT Port to listen on [default: 5005]
+ -P PORT --listen-port=PORT Port to listen on [default: 8000]
-i IP --ip=IP IP to communicate to [default: 127.0.0.1]
- -p PORT --port=PORT Port to communicate to [default: 3919]
+ -p PORT --port=PORT Port to communicate to [default: 3819]
"""
from docopt import docopt
@@ -52,6 +52,7 @@ def main():
osc.init_client(args['--ip'], int(args['--port']))
osc.init_server(args['--listen-ip'], int(args['--listen-port']), console)
+ print("Sending to {}:{}".format(osc.client._address, osc.client._port))
print("Serving on {}".format(osc.server.server_address))
osc.server.serve_forever()