Page 1 of 1

sending data

Posted: Thu Mar 02, 2017 5:02 pm
by hamed
Hi all

I have a problem about sending data from OpenVibe to another software
How can i send value 1 from openvibe to 127.0.0.1 port 3000
I used OSC but OSC send another thing.
In VPRN i don't know how can i set 127.0.0.1 and 3000
Could you please help me

Re: sending data

Posted: Fri Mar 03, 2017 9:43 am
by tgaugry
Hi,

Are you sure your receiving application is decoding correctly ?

You could also use OSC, and interpret this "other thing" as 1.

Cheers,

Re: sending data

Posted: Fri Mar 03, 2017 7:50 pm
by hamed
I used UDP Test Tool for analyzing OSC output
one of this images is during OSC sending 1

Re: sending data

Posted: Mon Mar 06, 2017 9:21 am
by tgaugry
Hi,
From what i see, this seems correct by OSC standard.

It use bundle command (23 62 75 6E 64 6C 65 00) followed by informations relative to the commands, things like command size (00 00 00 00 00 00 00 01 00 00 00 10).
Then we get an actual command (2F 61 2F 63 00 00 2C 69 00 00 00 00 01), sending integer (2C 69) to /a/c (2F 61 2F 63) with the value 1 (00 00 00 01).

Please check how you do osc decoding.