Hi,
I'd like to test some LADSPA plugins with pd-0.34 but I can't get the plugin~ object to work. I downloaded plugin~-0.2, ./configured and installed it, but if I run $ pd -lib /usr/pd/extra/plugin~/plugin~.pd_linux I get this error: /usr/pd/extra/plugin~/plugin~.pd_linux: can't load library
__ __
Frank Barknecht ____ ______ ____ __ trip\ \ / /wire ______
/ __// __ /__/ __// // __ \ / / __ \ ___\
/ / / ____/ / / / // ____// /\ \ ___\____ \
/_/ /_____/ /_/ /_//_____// / \ \_____\_____
/_/ _\
hi,
I can tell it works with pd-0.34 TEST7 assuming you follow these installation steps on Linux :
a/ download and compile LADSPA SDK ( from http://www.ladspa.org ) ( in src, do make, make install ) ---> this installs plugins in /usr/local/lib/ladspa.
b/ download and compile plugin~ PD object : do a configure, make, make install this install the plugin~ object in /usr/pd/extra/plugin~
c/ in your PD starting script, add
export LADSPA_PATH=/usr/local/lib/ladspa pd .... -path /usr/pd/extra/plugin~ ....
cheers,
Yves Degoyon.
----- Original Message ----- From: "Frank Barknecht" barknech@ph-cip.uni-koeln.de To: pd-list@iem.kug.ac.at Sent: Saturday, September 08, 2001 2:39 PM Subject: [PD] I can't get plugin~ to work
Hi,
I'd like to test some LADSPA plugins with pd-0.34 but I can't get the plugin~ object to work. I downloaded plugin~-0.2, ./configured and installed it, but if I run $ pd -lib /usr/pd/extra/plugin~/plugin~.pd_linux I get this error: /usr/pd/extra/plugin~/plugin~.pd_linux: can't load library
Could you help me?
__ __
Frank Barknecht ____ ______ ____ __ trip\ \ / /wire ______ / __// __ /__/ __// // __ \ / / __ \ ___\ / / / ____/ / / / // ____// /\ \ ___\____ \ /_/ /_____/ /_/ /_//_____// / \ \_____\_____
/_/ _\
Thank you all,
$ pd -lib /usr/pd/extra/plugin~/plugin~
__ __
Frank Barknecht ____ ______ ____ __ trip\ \ / /wire ______
/ __// __ /__/ __// // __ \ / / __ \ ___\
/ / / ____/ / / / // ____// /\ \ ___\____ \
/_/ /_____/ /_/ /_//_____// / \ \_____\_____
/_/ _\
On Sat, 8 Sep 2001, Frank Barknecht wrote:
I'd like to test some LADSPA plugins with pd-0.34 but I can't get the plugin~ object to work. I downloaded plugin~-0.2, ./configured and installed it, but if I run $ pd -lib /usr/pd/extra/plugin~/plugin~.pd_linux I get this error: /usr/pd/extra/plugin~/plugin~.pd_linux: can't load library
try starting pd with the -verbose option to see where pd looks for the library. Then make a symbolic link. In my case: /usr/lib/pd/extra/plugin~.pd_linux -> plugin~/plugin~.pd_linux After that it should work without -path or -lib. Also, remember to set LADSPA_PATH.
Regards, Reiner