Search found 4 matches

by denaro
Thu Feb 02, 2012 01:27
Forum: General Chat
Topic: Help with Triggering clips using OSC and Processing
Replies: 5
Views: 8932

Re: Help with Triggering clips using OSC and Processing

This is what i used to listen to Resolume via OSC:

void oscEvent(OscMessage theOscMessage) {
if(theOscMessage.checkAddrPattern("/layer1/video/position/values") == true) {
layer1Position = theOscMessage.get(0).floatValue();
}
if(theOscMessage.checkAddrPattern("/layer2/video/position/values ...
by denaro
Thu Feb 02, 2012 01:24
Forum: General Chat
Topic: Help with Triggering clips using OSC and Processing
Replies: 5
Views: 8932

Re: Help with Triggering clips using OSC and Processing

Can anyone help with guides etc for connecting a Kinect to OSC so that I can use it to trigger clips / actions in Reso?

I haven't found many good guides, but i can help you out with some code? My coding is a bit rough, but I've nmanaged to cobble this together from various online examples.

In ...
by denaro
Thu Feb 02, 2012 01:11
Forum: General Chat
Topic: Help with Triggering clips using OSC and Processing
Replies: 5
Views: 8932

Re: Help with Triggering clips using OSC and Processing

You could use OSC out from Resolume to let Processing know that the clip is finished (it should send a connect/0 when its done playing and set to play once).

But maybe just setting the play mode to 'continue' should do the trick already. That way it won't jump to the beginning when you trigger it ...
by denaro
Thu Jan 26, 2012 14:49
Forum: General Chat
Topic: Help with Triggering clips using OSC and Processing
Replies: 5
Views: 8932

Help with Triggering clips using OSC and Processing

Hi all,
I need some help on triggering clips in Resolume. I’m using Processing and a Kinect, and communicating via OSC. Everything is talking to each other and working really well, but I can’t quite work out the code in Processing for getting the clips to continue playing in Resolume after they’ve ...