[PD] MIDI on Intel Macs

2006-12-12 Thread KEYES CHRISTOPHER JAY
Dear PD people, I'm having great difficulty sending MIDI messeges to the built-in synth of Intel Macs OSX 10.4.8. Audio is fine but the MIDI side of Test Audio and MIDI does not work. No problem with MaxMSP and if I have it running to/from MaxMSP 1 shows in PD's MIDI preferences; otherwise

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread hard off
about the nth power of a signal, i want n as a variable, so the chain of [*~] objects is not exactly perfect. i tried [pow~] but it doesn't seem to work the way i expected. do you want to have an osc~ signal interspersed with noise such that the noise occurs 25% of the time and the osc~ the

Re: [PD] cellular automata

2006-12-12 Thread Frank Barknecht
Hallo, Mathieu Bouchard hat gesagt: // Mathieu Bouchard wrote: On Mon, 11 Dec 2006, Frank Barknecht wrote: Attached is one using data structures. It implements the Game of Life and the Demonic Cycling rules Is this a reference to Cycling 74 ? Hah, good one! But actually it's a stupid

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread Frank Barknecht
Hallo, hard off hat gesagt: // hard off wrote: sorry, i have a few questions today, i know it's bad from to ask them all in one thread, but i don't want to start too many threads. question 1) how do you multiply a signal by a power of n ? can you do it with expr~? Yes, you can use expr~

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread hard off
ah, THAT'S where i saw it last. yeah frank i do have your vead~ patch. in case anybody else was wondering, the syntax is: [expr~ pow($v1, $f2)] ...no idea where we can find a full syntax list for expr~ ??? ___ PD-list@iem.at mailing list

Re: [PD] mr peach... and a few questions (prefs and xml sockets)

2006-12-12 Thread Miguel Cardoso
Thanks for all the help!! I copied them and added the folder to the path in pd prefs. Its working now :D Im also in my first steps of compiling files now :D I have 2 questions: 1) I don't understand very well how the preferences work. I removed cyclone and added the mrpeach folder in

Re: [PD] USING PICTURES FROM THE INTERNET

2006-12-12 Thread Patco
Patco a écrit : Jozef Henzl a écrit : I use following script to retrieve images from google on my webpage. Hello, I would like to make a diaporama using pictures from internet, for example directly from google images... The best thing would be the ability to define the research of

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread Tim Blechmann
On Tue, 2006-12-12 at 20:11 +0900, hard off wrote: about the nth power of a signal, i want n as a variable, so the chain of [*~] objects is not exactly perfect. i tried [pow~] but it doesn't seem to work the way i expected. iirc pow~ implements pow(y, x), with x being the first inlet and y

[PD] mr peach language...xmlsocket

2006-12-12 Thread Miguel Cardoso
Hello! Im using mrpeach to send messages to flash, but all I can send is files... so comunication is working and just need to understand the language... [ send 21 /test.xml 0 ] I send to socket 21 the content of test.xml 0 end the message (for flash) / the 0 byte flash needs How can I

Fwd: Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread Steffen Leve Poulsen
Date: Tue, 12 Dec 2006 16:10:08 +0100 To: hard off [EMAIL PROTECTED] From: Steffen Leve Poulsen [EMAIL PROTECTED] Subject: Re: [pd] [noise~],[expr~], questions for more info on [expr] http://crca.ucsd.edu/~syadegar/expr.html also look at the sourcecode. Steffen Leve Poulssen

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread Mathieu Bouchard
On Tue, 12 Dec 2006, hard off wrote: sorry, i have a few questions today, i know it's bad from to ask them all in one thread, but i don't want to start too many threads. question 1) how do you multiply a signal by a power of n ? can you do it with expr~? you might mean raise a signal to the

[PD] status on intel core duo?

2006-12-12 Thread ydegoyon
hola, sorry if i haven't follow all discussions on the subject, but what is the status now of pd on a 64 bits architecture? more precisely, on an intel core duo? which version needed? thanks, sevy ___ PD-list@iem.at mailing list UNSUBSCRIBE and

[PD] (no subject)

2006-12-12 Thread raphy . ilias
hello ! i present myself : i'm a young art student in Angers (France ; so, forgive my bad english) and i learned to create patches with puredata in the workshop organized by goto10 at Poitiers (France) last january. Since this, i'm designing my own tools for the music i do, and now i'm trying to

Re: Re: [PD] mr peach language...xmlsocket

2006-12-12 Thread martin.peach
Notice that [any2string] outputs a zero as the last element of a list of floats. The attached patch shows a way to replace the zero with the more usual carriage-return/line-feed combination. Martin De: IOhannes m zmoelnig [EMAIL PROTECTED] Date: 2006/12/12 mar. AM 10:28:39 GMT-05:00 À:

[PD] error compiling any2string

2006-12-12 Thread Miguel Cardoso
I get this error compiling any2string.c does anyone have these moocow externals compiled for mac intel? thks list cc any2string.c -o any2string /usr/bin/ld: Undefined symbols: _main _binbuf_add _binbuf_clear _binbuf_free _binbuf_gettext _binbuf_new _class_addanything _class_new

Re: [PD] nqpoly4 simple instructions?

2006-12-12 Thread Hans-Christoph Steiner
On Dec 12, 2006, at 6:26 AM, Frank Barknecht wrote: Hallo, Mathieu Bouchard hat gesagt: // Mathieu Bouchard wrote: On Sat, 9 Dec 2006, Hans-Christoph Steiner wrote: The right inlet serves as the loadbang. You need to use the right inlet instead of regular [loadbang]s Could this be

[PD] pdweb

2006-12-12 Thread Mathieu Bouchard
This mail is just to say that if there are people who want to help with pd's website, there's a specific mailing-list for that, which currently has 50 times less subscribers than pd-list 15 times less than pd-dev, so I suppose that it isn't so well advertised. the page for the pdweb

Re: [PD] error compiling any2string

2006-12-12 Thread martin.peach
The errors are probably because you are not linking against pd.lib, which is where the undefined symbols are hiding. Martin De: Miguel Cardoso [EMAIL PROTECTED] Date: 2006/12/12 mar. PM 03:36:28 GMT-05:00 À: pd-liste pd-list@iem.at Objet: [PD] error compiling any2string I get this error

Re: [pd] [noise~],[expr~], questions

2006-12-12 Thread hard off
yeah. 25% was just a guess. thanks for the help with expr~ ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] error compiling any2string / pd.lib

2006-12-12 Thread Miguel Cardoso
do you know where I can find the pd lib? thanks for all Martin On Dec 12, 2006, at 8:51 PM, [EMAIL PROTECTED] wrote: The errors are probably because you are not linking against pd.lib, which is where the undefined symbols are hiding. Martin De: Miguel Cardoso [EMAIL PROTECTED] Date:

[PD] [ot] job listing at ucsd

2006-12-12 Thread Tom Erbe
We are looking for a programmer/IT guru to support our arts, music, dance and theatre departments. http://joblink.ucsd.edu/bulletin/job.html?cat=informationjob_id=41021 Responsible for the operation of instructional computing labs for the Division of Arts and Humanities Art Departments -

Re: [PD] (no subject)

2006-12-12 Thread Kyle Klipowicz
Hi Raphy~ On 12/12/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: i present myself : i'm a young art student in Angers (France ; so, forgive my bad english) Don't worry about bad English, your communication skills are fine. Quite a few other Pd-listers aren't native English speakers

Re: [PD] average Signal block by block

2006-12-12 Thread Charles Henry
wait a second what are these signal blocks like that you want to average over? Is it in fact a continuous signal, or are they actually independent measurements of the same (phase-locked) data? (If it's continuous data, you probably do not want this kind of approach) Chuck On 12/12/06,

[PD] YAMIB: yet another mac intel build

2006-12-12 Thread Hans-Christoph Steiner
Ok, please test the next nightly build on the Mac/Intel, 2006-12-13. 13 is my lucky number ;). I think I got it working now. I had to build Tcl/Tk from CVS (8.4.15-pre). Which is nice because it includes the new Mac OS X drawing speed-up code. http://autobuild.puredata.info It turns

Re: [PD] error compiling any2string / pd.lib

2006-12-12 Thread Martin Peach
Miguel Cardoso wrote: do you know where I can find the pd lib? thanks for all Martin On Dec 12, 2006, at 8:51 PM, [EMAIL PROTECTED] wrote: The errors are probably because you are not linking against pd.lib, which is where the undefined symbols are hiding. Martin De: Miguel Cardoso