Hi there:
Cool, I have now got the rrad.tpl working and had gone through the tutorials. I can start to see the way memento works. However, while trying to get the example.pd to work in the instruments directory, I found that I am missing external "any" and when switch the audio on and got the error from pligin~ as follow:
error: plugin~: no method for 'control'
I can't seem to find which package "any" belongs to and also a bit lost with plugin~.
Cheers
CHUN
Hallo, chun lee hat gesagt: // chun lee wrote:
Thanks, I got it now. I kept loading up the rrad.tpl as a patch rather than thinking that its a abstraction....... My bad;)
Well, actually my bad. :(
I really intend to write a "All externals needed for RRADical" and a "First steps with RRADical" document very soon. Honestly. ;)
Ciao
Frank Barknecht _ ______footils.org__
Hi,
chun lee wrote:
Cool, I have now got the rrad.tpl working and had gone through the tutorials. I can start to see the way memento works. However, while trying to get the example.pd to work in the instruments directory, I found that I am missing external "any" and when switch the audio on and got the error from pligin~ as follow:
error: plugin~: no method for 'control'
Uhm, probably a bug on my side. I'll need to take a look, but I am away from my machine currently.
I can't seem to find which package "any" belongs to and also a bit lost with plugin~.
"any" is part of iem_lib, but it seems to be an abstraction. I think, there was a discussion about this recently here.
A much better patch to look at might be the showcase stuff, I think the main patch is called use-showcase.pd
This is a complete performance environment I used in Graz done with the RRADical abstractions. Actually a bit similar to your error.pd patch.
Frank
Hi there:
Thanks! I have got "any" now, it just the plugin~ left now. I have just compile plugin~ cause I kept getting:
Warning (plugin~): dummy substitution
But after I make install the plugin~, the message still comes up. I am looking into this just now.
I also had a quick scan through the abstractions/rradical directory but could not find the use-showcase.pd. Is it a separate download?
Thanks yet again
CHUN
Uhm, probably a bug on my side. I'll need to take a look, but I am away from my machine currently.
I can't seem to find which package "any" belongs to and also a bit lost with plugin~.
"any" is part of iem_lib, but it seems to be an abstraction. I think, there was a discussion about this recently here.
A much better patch to look at might be the showcase stuff, I think the main patch is called use-showcase.pd
This is a complete performance environment I used in Graz done with the RRADical abstractions. Actually a bit similar to your error.pd patch.
Ciao,
Hi there:
Thanks! I have got "any" now, it just the plugin~ left now. I have just compile plugin~ cause I kept getting:
Warning (plugin~): dummy substitution
hi chun,
look at this post: http://iem.at/mailinglists/pd-list/2003-05/012092.html
patrick
Hi patrick:
Ya, I figured it out after a bit. It turned out that I did not even have ladspa installed which makes plugin~ not working and...
Well, my head is dizzy now after all the installing..
Anyway, I got the example.pd loaded up without complain now, just need to figure out how to make sound from it now:)
Thanks for all your helps
CHUN
On 8/10/04 5:23 pm, "patrick" patrick@11h11.com wrote:
Hi there:
Thanks! I have got "any" now, it just the plugin~ left now. I have just compile plugin~ cause I kept getting:
Warning (plugin~): dummy substitution
hi chun,
look at this post: http://iem.at/mailinglists/pd-list/2003-05/012092.html
patrick
Hallo, patrick hat gesagt: // patrick wrote:
Thanks! I have got "any" now, it just the plugin~ left now. I have just compile plugin~ cause I kept getting:
Warning (plugin~): dummy substitution
look at this post: http://iem.at/mailinglists/pd-list/2003-05/012092.html
Yeah, I was bitten by that one, too. Instead of the library loading order fix, that Krzysztof suggested (and that works, but make sure you still get the "prepend" from Cyclone, see below) I just removed plugin~ from Cyclone's list of dummy substitions and recompiled it.
See /externals/miXed/cyclone/shadow/dummies.c and comment or delete the line with "plugin~".
The most simple fix actually is the following, with a big BUT:
Dummies also won't get loaded, if you do not load Cyclone as library.
*BUT* then iemlib's [prepend] will overwrite the [prepend] in Cyclone if you load iemlib as library, which you only can avoid, if you use the iemlib single externals as they are built with the CVS build system.
Sounds complicated, huh? Well, it is!! It is a really bad situation that hopefully will be resolved when Pd finally gets a [prepend] as a builtin list operating object as was discussed at Graz and then everyone can rely on this instead of clashes in various libraries.
Frank Barknecht _ ______footils.org__
hi Frank, Chun,
an even easier fix is to get a newer cyclone... The changes committed to sf 4 months, 4 weeks ago, included replacing plugin~ dummy with c74.plugin~, and importing msp plugin~s as c74.plugin~s (and some others too -- look into .../miXed/shared/common/port.c).
Krzysztof
Frank Barknecht wrote: ...
Warning (plugin~): dummy substitution
...
still get the "prepend" from Cyclone, see below) I just removed plugin~ from Cyclone's list of dummy substitions and recompiled it.