Hi,
I just want to trigger clips using OSC with another application (Pangolin Beyond in that case)
I set up ip and ports on both apps , sent as example the following message (got from OSC mapping)
"/layer1/clip1/connect" which should do the job, but nothing happend in Resolume (5.1.3)!
I tried the same with a little Processing sketch, with no success again !
What did I wrong ? is there some kind of initialization command necessary before, or something else ?
Unfortunately Resolume seems to have no OSC monitor function (like Beyond) this would be helpful ....
Thanks in advance
Basic OSC Problem
Re: Basic OSC Problem
you have to send an Integer 1 to the "/layer1/clip1/connect" address.
- assuming the input and output ports are set up correctly.
- assuming the input and output ports are set up correctly.
Software developer, Sound Engineer,
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Re: Basic OSC Problem
Thank you !
Sometimes solutions can be so easy
I'll try it
Sometimes solutions can be so easy

I'll try it
-
- Posts: 14
- Joined: Sat Jul 16, 2016 21:02
Re: Basic OSC Problem
I am having some what of the same issue, not being able to send the 1. How was this able to be solved?
Re: Basic OSC Problem
in your processing sketch you would have
taken from one of the examples at: http://www.sojamo.de/libraries/oscP5/
Code: Select all
/* in the following different ways of creating osc messages are shown by example */
OscMessage myMessage = new OscMessage("/test");
myMessage.add(123); /* add an int to the osc message */
/* send the message */
oscP5.send(myMessage, myRemoteLocation);
Software developer, Sound Engineer,
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu