python-osc icon indicating copy to clipboard operation
python-osc copied to clipboard

OSC message to reomte system

Open aradhanacha opened this issue 5 years ago • 1 comments

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?

aradhanacha avatar Jul 07 '20 14:07 aradhanacha

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

somecho avatar Aug 25 '20 07:08 somecho