Re: [PD] gcc export-dynamic error

2012-11-07 Thread enrike
thanks, I finally managed to get it to compile by removing a few externals, but it would be nice to have them in case I use it in the near future. I might try to compile again. ar., 2012.eko azaren 06a 20:34(e)an, Miller Puckette(e)k idatzi zuen: I've ben trying to clean out all the

Re: [PD] gcc export-dynamic error

2012-11-07 Thread IOhannes m zmölnig
On 11/07/2012 09:05 AM, enrike wrote: thanks, I finally managed to get it to compile by removing a few externals, but it would be nice to have them in case I use it in the near future. I might try to compile again. it would also be nice if you could be more specific which externals made

Re: [PD] Highest and Lowest values of array?

2012-11-07 Thread James Dunn
what about using [max] and [min]? see attached patch James Quoth Sebastian Valenzuela, on 06/11/2012 21:03: I imagine this isn't very difficult to do, but i haven't been able to find it anywhere. I have controller data constantly begin written (and updated) into an array - What is the

Re: [PD] Pd -nogui on Raspberry Pi : problem with samplerate

2012-11-07 Thread Pierre Massat
All right, thanks for your help. Cheers, Pierre. 2012/11/6 Miller Puckette m...@ucsd.edu I think this depends on how oggwrite~ works internally. Objects ideally should react to changes in sample rate in real time, since the user can change the rate after the object has been created.

Re: [PD] cq2midi ? Polyphonic MIDI notes from audio

2012-11-07 Thread jamal crawford
hi Thomas and list everything went smooth with compiling constantq~. when i open cq2midi.pd i get [list-map], [list-drip], [pyx. 1 2 noteflt] couldnt create. cq2midi is added to path. best ./j On Wed, Nov 7, 2012, at 10:56 AM, lamar odom wrote: hi Thomas thanks for the reply. best regards

Re: [PD] cq2midi ? Polyphonic MIDI notes from audio

2012-11-07 Thread Thomas Grill
Hi Jamal, the list-abstraction must be in your path, see the link on the cq2midi project page. The py/pyext external has to be either loaded using a -lib py startup option to pd, or in pd-extended using [import py] gr~~~ 2012/11/7 jamal crawford three...@ml1.net: hi Thomas and list everything

[PD] IBM PureData

2012-11-07 Thread Max
http://www-01.ibm.com/software/data/puredata/ this new IBM Software will make searching the web for pure data even harder. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] IBM PureData

2012-11-07 Thread Charles Henry
I'm sad. They will ruin the good name of Pure Data. umm... let's hope there's no looming copyright issues over the name. IBM is not *famously* litigious, but they are a computer/software company. Watch out for lawyers On Wed, Nov 7, 2012 at 4:30 PM, Max abonneme...@revolwear.com wrote:

Re: [PD] IBM PureData

2012-11-07 Thread Björn Eriksson
yeah.,.. that really sucks--- i guess they are getting away with PureData - instead of Pure Data to me it makes some difference - - and apart from that and more important - the IBM program will never be as great as Pure Data - for sure! /björn On Wed, Nov 7, 2012 at 11:46 PM, Charles Henry

Re: [PD] IBM PureData

2012-11-07 Thread Martin Dupras
Well, for what it's worth, I have emailed IBM very politely and humbly asking that they reconsider. The most likely thing is that they are simply unaware, and if they knew about the PD community and all the work that has been done over 13 years, they might very well reconsider. In my letter, I

Re: [PD] gcc export-dynamic error

2012-11-07 Thread Hans-Christoph Steiner
On Nov 7, 2012, at 3:44 AM, IOhannes m zmölnig wrote: On 11/07/2012 09:05 AM, enrike wrote: thanks, I finally managed to get it to compile by removing a few externals, but it would be nice to have them in case I use it in the near future. I might try to compile again. it would also be

Re: [PD] list vs. symbol array [was: Re: Licensing issues]

2012-11-07 Thread Jonathan Wilkes
- Original Message - From: Frank Barknecht f...@footils.org To: pd-list@iem.at pd-list@iem.at Cc: Sent: Tuesday, November 6, 2012 6:19 AM Subject: [PD] list vs. symbol array [was: Re: Licensing issues] On Mon, Nov 05, 2012 at 11:38:00AM -0800, Jonathan Wilkes wrote: -

Re: [PD] IBM PureData

2012-11-07 Thread Jonathan Wilkes
Just search your Pd paths instead, IBM can't infiltrate those! http://puredata.info/Members/jancsika/searchplugindesc/ -Jonathan - Original Message - From: Max abonneme...@revolwear.com To: PD list pd-list@iem.at Cc: Sent: Wednesday, November 7, 2012 5:30 PM Subject: [PD] IBM

Re: [PD] IBM PureData

2012-11-07 Thread i go bananas
the obvious next step is for someone to code up an [IBM~] external for pd ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] Issue with [shell] and jack_connect/disconnect

2012-11-07 Thread michael noble
hi all, I'm trying to use the [shell] object to automate JACK connections under Linux by calling jack_connect or jack_disconnect. While this works at first, it seems that the ultimate result is that pd spawns a number of processes that remain in the background, and very soon jack_connect simply

Re: [PD] Issue with [shell] and jack_connect/disconnect

2012-11-07 Thread Ivica Ico Bukvic
Are you using exit 0 at the end of your shell script (assuming it is a script)? I’ve also encountered some funny things with [shell] but in a bit more convoluted scenario and am curious as to what everyone’s thoughts are. Namely, I am using a shell script to perfectly pair wiimotes, so a [shell]

Re: [PD] close all patches on quit sourceforge patch

2012-11-07 Thread Ivica Ico Bukvic
Many thanks for sharing this, IOhannes! I've embellished your patch a bit and added it to pd-l2ork. Best wishes, Ico -Original Message- From: pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] On Behalf Of IOhannes m zmoelnig Sent: Thursday, October 25, 2012 10:31 AM To:

Re: [PD] Issue with [shell] and jack_connect/disconnect

2012-11-07 Thread michael noble
On Thu, Nov 8, 2012 at 4:37 PM, Ivica Ico Bukvic i...@vt.edu wrote: Are you using exit 0 at the end of your shell script (assuming it is a script)? Not using a script at this point - simply sending the jack_connect messages directly to [shell]. Moving to a script was going to be my next step