Is there a way for SC3 to talk nice to pd on OSX OSC, ?
Patrick Pagano, B.S.,M.F.A Research,Development & Production Digital Worlds Institute University Of Florida (352) 294-2082
Hallo, Patrick Pagano hat gesagt: // Patrick Pagano wrote:
Is there a way for SC3 to talk nice to pd on OSX OSC, ?
There are the OSC externals in CVS. They should work fine to connect to SC3, or are there any problems?
Frank Barknecht _ ______footils.org__
_ __latest track: "scans" _ http://footils.org/cms/show/41
On May 2, 2005, at 7:03 PM, Frank Barknecht wrote:
Hallo, Patrick Pagano hat gesagt: // Patrick Pagano wrote:
Is there a way for SC3 to talk nice to pd on OSX OSC, ?
There are the OSC externals in CVS. They should work fine to connect to SC3, or are there any problems?
You can always avoid the hassle of OSC and just use Pd's native message
format: semi-colon terminated text, i.e.:
this is a message; this is another message;
Its quite easy to generate and parse in just about any programming
language, and no extra software is needed. Then you use TCP sockets to
send/receive the messages between Pd and SC. In Pd, you can use
[netreceive] and [netsend] to create/connect to TCP sockets.
Or, if you must use OSC, you can get. I think I compiled OSC as Jamie
said to and posted it here:
http://at.or.at/hans/pd/objects.html
A functional OSC is also included in this release: http://at.or.at/hans/pd/installers.html
.hc
"Information wants to be free." -Stewart Brand
I read:
Is there a way for SC3 to talk nice to pd on OSX OSC, ?
yes osc is what I use. http://test.pilot.fm/sc/rng/
HTH
x
CK and does it need an osc.pd_darwin?
is it only CVS?
On May 2, 2005, at 7:39 PM, CK wrote:
I read:
Is there a way for SC3 to talk nice to pd on OSX OSC, ?
yes osc is what I use. http://test.pilot.fm/sc/rng/
HTH
x
-- chris@lo-res.org Postmodernism is german romanticism with better http://pilot.fm/ special effects. (Jeff Keuss / via ctheory.com)
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Patrick Pagano, B.S.,M.F.A Candidate Research And Development Assistant Digital Worlds Institute University Of Florida (352) 294-2070
hi pat,
I read:
and does it need an osc.pd_darwin?
I'm afraid so (I'm on linux ppc)
is it only CVS?
If it isn't in hans' installer you can try the one here: http://barely.a.live.fm/pd/OSC/bin/ - otherwise you might have to compile it yourself from cvs
HTH
x
i cannot seem to load both sendOSC and OSCroute at the same time
link error 0 dyld: /Users/patrickp/Desktop/pd-0.38-4/bin/pd multiple definitions of symbol _OSCProblem /usr/local/lib/pd/extra/OSCroute.pd_darwin definition of _OSCProblem /usr/local/lib/pd/extra/sendOSC.pd_darwin definition of _OSCProblem
hi pat,
I read:
and does it need an osc.pd_darwin?
I'm afraid so (I'm on linux ppc)
is it only CVS?
If it isn't in hans' installer you can try the one here: http://barely.a.live.fm/pd/OSC/bin/ - otherwise you might have to compile it yourself from cvs
HTH
x
-- chris@lo-res.org Postmodernism is german romanticism with better http://pilot.fm/ special effects. (Jeff Keuss / via ctheory.com)
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Patrick Pagano, B.S.,M.F.A Candidate Research And Development Assistant Digital Worlds Institute University Of Florida (352) 294-2070
On May 2, 2005, at 8:49 PM, Patrick Pagano wrote:
i cannot seem to load both sendOSC and OSCroute at the same time
link error 0 dyld: /Users/patrickp/Desktop/pd-0.38-4/bin/pd multiple definitions of symbol _OSCProblem /usr/local/lib/pd/extra/OSCroute.pd_darwin definition of _OSCProblem /usr/local/lib/pd/extra/sendOSC.pd_darwin definition of _OSCProblem
...this is probably because you are using that s_loader patched version of pd, right? If so, then you may need to change the linking of OSC's compile from flat_namespace to two_level_namespace (which is default, so you don't really need to add it)...or rather preferably use -bundle -bundle_loader /where/is/your/installed/pd/binary
...I think...it's been awhile since I compiled OSCroute, sendOSC, and OSC, but they are working here...
jamie