Search found 2 matches

by hobbyhack
Mon Jan 11, 2021 5:02 pm
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18496

Re: OSC streaming with Python-OSC

James wrote: Mon Jan 11, 2021 2:07 pm If you set it to listen on "127.0.0.1" it should listen on all available network interfaces.
127.0.0.1 causes it to only listen locally. However, setting it to an empty string would work for all IP addresses.

Code: Select all

IP = ""
by hobbyhack
Mon Jan 11, 2021 2:00 pm
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18496

Re: OSC streaming with Python-OSC

In case someone else lands here, here is some starter python server code using the python-osc library. There are examples of handling specific messages and also some commented out lines if you want to catch everything. This is just a start and won't really do much except tell you when you blink or c...