very simple OSC debug tool

Nikolaus Gradwohl2009-03-06T08:09:00+00:00

when playing with OSC and i'm not quite sure what osc messages get send by an application i use a little python script which uses the simple OSC api

import osc
osc.init()
osc.listen( "127.0.0.1", 1234 )

in fact it misuses the library ;-)

every time a message is received that isn't bound by a callback function (which is all messages, since we dont bind anything here ), the listener prints a waring containing the address, the format and the value of the message

Tweet This! submit to reddit Digg! Tags: | no comments | no trackbacks

See also:

using the BlenderGameEngine as OSC client
sketch experiment 7 - osc events
grease pencil experiment 6 - grid
grease pencil experiment 4 - filled shapes
grease pencil experiment 4 - depth of field

Trackbacks

Comments

Leave a response

Leave a comment