On Mon, 2014-03-10 at 10:33 +0100, IOhannes m zmoelnig wrote:
On 2014-03-09 14:15, Roman Haefeli wrote:
k ... for me [packOSC] didn't work with [netsend], I didn't investigate why but
just used [udpsend] instead.
[netsend] is different from [udpsend] and [tcpsend] in that it sends incoming Pd (list/any) messages as FUDI. The latter two expect lists of bytes (list of numbers between 0 and 255). [packOSC] outputs OSC packets represented as lists of bytes and thus is designed to transported by either [udpsend] or [tcpsend], but not [netsend].
well, starting with Pd-0.45 [netsend] has support for binary data, which makes it compatible with [udpsend]. you have to pass it the "-b" switch though, so [udpsend] == [netsend -u -b] [tcpsend] == [netsend -b]
Oh, good to know. Thanks for the update.
Roman