Page 1 of 1

OSC Shortcut Problem

Posted: Mon Apr 18, 2022 08:57
by aokey
I sent OSC message "/composition/selectedclip/transport/position/behaviour/playdirection #" to control the clip start and stop.
Although I send "/composition/selectedclip/transport/position/behaviour/playdirection 1" osc message, the clip didn't pause, but 0 and 2 parameter works fine.

I enabled OSC output to chech the osc message. I got "/composition/selectedclip/transport/position/behaviour/playdirection 1" from Resolume for manual operation, but I got "/composition/selectedclip/transport/position/behaviour/playdirection 2" when I send osc message ""/composition/selectedclip/transport/position/behaviour/playdirection 1".

I think it's a bug for osc received behavior.
Could you check this problem?

Re: OSC Shortcut Problem

Posted: Thu Apr 21, 2022 10:11
by Zoltán
are you sending "/composition/selectedclip/transport/position/behaviour/playdirection 1" as string or
as int 1 to the address "/composition/selectedclip/transport/position/behaviour/playdirection" ?

Re: OSC Shortcut Problem

Posted: Fri Apr 29, 2022 17:41
by aokey
No, I send "/composition/selectedclip/transport/position/behaviour/playdirection 1" as stop or pause. But it works as play(starting clip).

Re: OSC Shortcut Problem

Posted: Fri Apr 29, 2022 19:01
by Zoltán
OSC messages in Resolume are expected in address, and data format.
In this case the address would be "/composition/selectedclip/transport/position/behaviour/playdirection"
And the data should be an integer added to the packet.

Which program are you using to send the messages?

Re: OSC Shortcut Problem

Posted: Fri May 13, 2022 12:51
by aokey
I noticed that although I have to set int value, but I put float value on it.
This isn't a problem, it's just my misunderstand.
Thank you for your good advice.