Usine Osc Problems

Can you link this thread back to the admin so he can post here? Is the replier the developer?

OSC works with dozens of other configs and controllers that I know of. I can’t test Usine because I’m on OSX and there doesn’t appear to be a Mac version. Here’s a python example. Here’s the code that does note_on in that package.

OSC is a standard like HTML is a standard. It takes a lot of fiddling around to get it to “do what you want”, it’s not necessarily trivial or the same for everyone.

Tell him/her to look for this file, override it, and mess around from there.

Using this PHP class I can trigger a note via UDP like so:

  
  
$c = new OSCClient();  
$c->set_destination("127.0.0.1", 8000);  
  
$m = new OSCMessage("/renoise/trigger/note_on", array(  
 -1, 0, 100, 60  
 ));  
$c->send($m);  
  

If i send garbage, it of course won’t play:

  
$m = new OSCMessage("/renoise/trigger/note_on", array(  
 -1, 5000, 100, 60  
 ));  
$c->send($m);  
  

The above doesn’t work because there is no track 5000.

Regards,