python-osc
python-osc copied to clipboard
OSC message to reomte system
Hi, I want to send OSC message to remote system. It seems I need to specify IP address of remote system but that is not working.
def __init__(self, window) -> None:
self.ui = ui.UserInterface(self.on_auto_prog_button_clicked)
self.ui.setup_ui(window)
self.osc_client = osc.OscClient("localhost", 7701)
self.auto_prog = False
I am assuming Instead of local host I need to specify remote IP address and port.But remote system is not receiving anything.Can you let me know how to do this?
I had the same issue with Python osc 1.7.4. I was able to receive OSC messages but unable to send it. I downgrade to 1.7.2 and sending worked. Might be related to issue #109