[PD] frequency components analysis

2008-07-09 Thread Julian Villegas
Dear list, I'm using sigmund~ for extracting the freq. components of a sound but I was wondering if you know another object that does the same job using a different approach. I'd like to compare the results obtained by different methods. Thank in advance for your replies! Julian Villegas Me p

[PD] ann: pd as the engine for our class installation

2008-07-09 Thread John Harrison
This semester I taught a course where Engineers and Artists worked together to create interactive art. For the final project we took over an art gallery and built a virtual environment using 12 computers, 12 speakers, 12 projectors and several Arduinos. We built and networked everything in Pd/G

Re: [PD] compiling pd-extended ubuntu hardy amd64

2008-07-09 Thread ydegoyon
ola, > > I think sended the second post to the list of developers as well. It's > best to send an email to each developer of the extrnals which I've > made changes? > no problem for me, that's crazy the -fPIC was not there, as i fix this ten times and maybe never comitted it it doesn't hurt for

Re: [PD] compiling pd-extended ubuntu hardy amd64

2008-07-09 Thread Sergi Lario
Hello! 2008/7/9 Hans-Christoph Steiner <[EMAIL PROTECTED]>: > > On Jul 8, 2008, at 8:04 PM, Sergi Lario wrote: > > I get some errors trying to compile pd-extended in a ubuntu hardy amd64. > > I did this steps: > > 1.- Get pd-extended trunk code via svn > > [EMAIL PROTECTED]:/home/pd-extended$ svn

Re: [PD] make money not art

2008-07-09 Thread Hans-Christoph Steiner
On Jul 7, 2008, at 11:38 AM, Enrique Erne wrote: > marius schebella wrote: >> Hi, >> has someone experience in distributing and probably selling pd >> standalones? I was thinking of a combination of flash interface (or >> Gem?) and sound patch. >> right now I think the best way to do this would b

Re: [PD] compiling pd-extended ubuntu hardy amd64

2008-07-09 Thread Hans-Christoph Steiner
On Jul 8, 2008, at 8:04 PM, Sergi Lario wrote: I get some errors trying to compile pd-extended in a ubuntu hardy amd64. I did this steps: 1.- Get pd-extended trunk code via svn [EMAIL PROTECTED]:/home/pd-extended$ svn co https://pure- data.svn.sourceforge.net/svnroot/pure-data/trunk/ ./

Re: [PD] smallest number from a stream of numbers

2008-07-09 Thread Hans-Christoph Steiner
There is also [track_min] and [track_max] in the mapping lib. .hc On Jul 9, 2008, at 11:00 AM, Hans Roels wrote: > I don't think you need lists for this, just 2 objects [min] > [trigger] and an initial value. in attach is an example with a > random stream of numbers. > hans r > > At 21:47 8

Re: [PD] smallest number from a stream of numbers

2008-07-09 Thread Hans-Christoph Steiner
Oops, I forgot to add, the min/trigger and track_min/max examples give the min/max for all of the past values. Cyrille's example with [last_n] gives you the min and max for the past thirty values. There is also [local_min] and [local_max] for tracking trends. .hc On Jul 9, 2008, at 11:00 A

Re: [PD] compiling pd-extended ubuntu hardy amd64

2008-07-09 Thread Sergi Lario
Hello list, Decided to watch the flags of the externals that gave me problems and a few others. I made the following changes and it worked. [EMAIL PROTECTED]:/home/pd-extended/externals/*gem2pdp*$ vim Makefile.in Line: 16 CFLAGS = *-fPIC* -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math

Re: [PD] mrpeach osc - pipelist question

2008-07-09 Thread Mathieu Bouchard
On Wed, 9 Jul 2008, IOhannes m zmoelnig wrote: what's the exact difference between your solution prepending "send" and my solution prepending "list"? Mine is more like [netsend]. If/when both solutions work perfectly, they should be pretty equivalent. Besides, I didn't see your solution when

Re: [PD] smallest number from a stream of numbers

2008-07-09 Thread Frank Barknecht
Hallo, Hans Roels hat gesagt: // Hans Roels wrote: > I don't think you need lists for this, just 2 > objects [min] [trigger] and an initial value. in > attach is an example with a random stream of numbers. That's the general approach to find min and max in a stream of numbers and it's internall

Re: [PD] mrpeach osc - pipelist question

2008-07-09 Thread Frank Barknecht
Hallo, Jack hat gesagt: // Jack wrote: > Here a simple patch to serialize a list and pack it again (i just get > 'symbol bang', i think it's easy to get only 'bang' ?). Oh, yes. Well, I just checked and e.g. [list-map] also works. I wonder what I did to make it fail. I promise, I did run into p

Re: [PD] vline~, vsnapshot~, etc.

2008-07-09 Thread Mathieu Bouchard
On Wed, 9 Jul 2008, Matt Barber wrote: If I'm not mistaken, [inlet] and [inlet~] are members of the same class "vinlet," which has the two constructors vinlet_new and vinlet_newsig. Yes, it is the case. This shows you that the actual class is an implementation detail, and what matters is the

Re: [PD] XML-files

2008-07-09 Thread Hans-Christoph Steiner
It's in SVN in externals/jasch_lib .hc On Jul 9, 2008, at 8:07 AM, [EMAIL PROTECTED] wrote: > Thank you so much - but where is it findable? I tried Pure data > external > repository withaou any sucess > > best regards markus > > > > > >> On Jul 7, 2008, at 9:52 AM, [EMAIL PROTECTED] wrote: >

Re: [PD] PDP and/or GEM for live video processing

2008-07-09 Thread marius schebella
Hi Russell, you can do everything in GEM. the pdp-gem bridge is slow afaik, so staying in either the pdp domain or the gem domain is a good idea. and I guess both will do background subtraction. look at pix_background for a quickstart. it depends what else you need, whether you want to track mot

Re: [PD] smallest number from a stream of numbers

2008-07-09 Thread Hans Roels
I don't think you need lists for this, just 2 objects [min] [trigger] and an initial value. in attach is an example with a random stream of numbers. hans r At 21:47 8/07/2008, you wrote: Frank Barknecht wrote: > Hallo, > cyrille henry hat gesagt: // cyrille henry wrote: > >> Ben Carney a écrit

[PD] is xsample library included in Pd-0.40.3-extended-rc3-ubuntu-hardy-i386?

2008-07-09 Thread Io no
Hi all in the list, I've just tried to use the xplay~ object in Pd-0.40.3-extended-rc3-ubuntu-hardy-i386 I tried to run pd with the command: $ pd -lib xsample the puredata console say to me: xsample: can't load library The strange thing is that there is the documentation about xsample and xpl

Re: [PD] vline~, vsnapshot~, etc.

2008-07-09 Thread Matt Barber
> Date: Wed, 9 Jul 2008 09:00:51 +0200 > From: Frank Barknecht <[EMAIL PROTECTED]> > Subject: Re: [PD] vline~, vsnapshot~, etc. > To: pd-list@iem.at > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=us-ascii > > Hallo, > Matt Barber hat gesagt: // Matt Barber wrote: > >> What do

Re: [PD] better tabread4~

2008-07-09 Thread Matt Barber
On Wed, Jul 9, 2008 at 4:39 AM, cyrille henry <[EMAIL PROTECTED]> wrote: > > > Matt Barber a écrit : >> >> Cyrille, >> >> Could you try this optimization for the tabread6c~ I threw together? >> It uses the same general notation as the tab4c~ suite: >> >>t_sample a3plusa4plusa5 = >> 0.25f*c+

Re: [PD] mrpeach osc - pipelist question

2008-07-09 Thread Jack
Hello Frank, Here a simple patch to serialize a list and pack it again (i just get 'symbol bang', i think it's easy to get only 'bang' ?). Hope is what you are looking for. ++ Jack listsernewlist.pd Description: Binary data Le 8 juil. 08 à 21:07, Frank Barknecht a écrit : Hallo, Mathi

[PD] XML-files

2008-07-09 Thread j milo taylor
Hi, That sounds interesting. I can't seem to find the detox external? ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] better tabread4~

2008-07-09 Thread cyrille henry
Matt Barber a écrit : > Cyrille, > > Could you try this optimization for the tabread6c~ I threw together? > It uses the same general notation as the tab4c~ suite: > > t_sample a3plusa4plusa5 = 0.25f*c+0.125f*e-0.333f*d-0.0417*a; > t_sample fminusa = f-a; > t_sample emi

Re: [PD] mrpeach osc - pipelist question

2008-07-09 Thread IOhannes m zmoelnig
Mathieu Bouchard wrote: > On Tue, 8 Jul 2008, Martin Peach wrote: > > You can eliminate the possibility of confusion by requiring that a > "send" selector be prepended, just like it is for [netsend]. However, > [list prepend send] doesn't cut it because [route send] doesn't undo it > properly:

Re: [PD] print all abstractions and externals

2008-07-09 Thread Hans Roels
that 's an interesting idea but I don't know if this is possible with pd-vanilla, I didn't try it yet. I made this patch to be able to save all files that I need for one patch. As Luigi also noticed, it would be good if this patch searched for abstractions within abstractions, I might try this

Re: [PD] vline~, vsnapshot~, etc.

2008-07-09 Thread Frank Barknecht
Hallo, Matt Barber hat gesagt: // Matt Barber wrote: > What does the "v" in [vline~], [vsnapshot~], etc. mean? Is it also > the same in the "vinlet" and "vexpr" object classes? I don't know vinlet, is this new? vexpr~ is definitely something else. vline~ and vsnaphot~ are variants of line~ rsp.