我正在使用pyOSC并尝试将数据从OSC服务器返回到客户端。其中一个默认处理程序是' / info'。在OSC代码中,我在serverInfo_handler中看到以下注释:
a Message-handler function may return None, but it could also return an OSCMessage (or OSCBundle),
which then gets sent back to the client.
This handler returns a reply to the client, which can contain various bits of information
about this server, depending on the first argument of the received OSC-message:
但是如何在客户端获取此信息?客户端没有读取或接收功能......
答案 0 :(得分:0)
我发现最简单的方法是在目标计算机上同时运行OSC客户端和服务器。这样,服务器部分可以处理消息,而客户端部分可以将数据发送回去。通过创建服务器和客户端线程,可以在一个程序中完成此操作。
顺便说一句,我现在切换到python-osc,非常易于使用。