From: Guillaume Pellerin Date: Sat, 23 Aug 2025 12:12:56 +0000 (+0200) Subject: update default OSC port X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=36950cd6932e5c6f104f4d7c08b2da8d8c774ae8;p=deefuzzer.git update default OSC port --- diff --git a/scripts/osc/osc_jingles_start.py b/scripts/osc/osc_jingles_start.py index b15c8d6..b38222f 100644 --- a/scripts/osc/osc_jingles_start.py +++ b/scripts/osc/osc_jingles_start.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_jingles_stop.py b/scripts/osc/osc_jingles_stop.py index 7e2f4f5..f99fb9c 100644 --- a/scripts/osc/osc_jingles_stop.py +++ b/scripts/osc/osc_jingles_stop.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_player_fast.py b/scripts/osc/osc_player_fast.py index 0262c5f..b858083 100644 --- a/scripts/osc/osc_player_fast.py +++ b/scripts/osc/osc_player_fast.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_player_next.py b/scripts/osc/osc_player_next.py index 8de7678..2d2efd5 100644 --- a/scripts/osc/osc_player_next.py +++ b/scripts/osc/osc_player_next.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: sys.exit(err) diff --git a/scripts/osc/osc_player_slow.py b/scripts/osc/osc_player_slow.py index 1dff54f..45213d0 100644 --- a/scripts/osc/osc_player_slow.py +++ b/scripts/osc/osc_player_slow.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_record_start.py b/scripts/osc/osc_record_start.py index 4472367..a046eaa 100644 --- a/scripts/osc/osc_record_start.py +++ b/scripts/osc/osc_record_start.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_record_stop.py b/scripts/osc/osc_record_stop.py index 25bd3dc..5c01814 100644 --- a/scripts/osc/osc_record_stop.py +++ b/scripts/osc/osc_record_stop.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_relay_start.py b/scripts/osc/osc_relay_start.py index 0e1919e..fd29938 100644 --- a/scripts/osc/osc_relay_start.py +++ b/scripts/osc/osc_relay_start.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_relay_stop.py b/scripts/osc/osc_relay_stop.py index 83584b2..436860d 100644 --- a/scripts/osc/osc_relay_stop.py +++ b/scripts/osc/osc_relay_stop.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_twitter_start.py b/scripts/osc/osc_twitter_start.py index 6e39d2e..2f9f448 100644 --- a/scripts/osc/osc_twitter_start.py +++ b/scripts/osc/osc_twitter_start.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit() diff --git a/scripts/osc/osc_twitter_stop.py b/scripts/osc/osc_twitter_stop.py index 9f5eda1..35b20e9 100644 --- a/scripts/osc/osc_twitter_stop.py +++ b/scripts/osc/osc_twitter_stop.py @@ -6,7 +6,7 @@ import sys # send all messages to port 1234 on the local machine try: - target = liblo.Address(1234) + target = liblo.Address(16001) except liblo.AddressError as err: print(str(err)) sys.exit()