Re: [PD] Re: namecanvas - why deprecated?

2007-02-10 Thread Frank Barknecht
Hallo, Chris McCormick hat gesagt: // Chris McCormick wrote: Or maybe you're talking about something else? The namecanvas issue would be solved if each patch was given a default name like pd-$0 or somesuch. That's what I meant: Instead of an object like [namecanvas] that can be deleted, an

Re: [PD] audio send recieve feedback quirk

2007-02-10 Thread Steffen
Hei, Thanks for this info. On 10/02/2007, at 0.51, Frank Barknecht wrote: Derek Holzer hat gesagt: // Derek Holzer wrote: But actually, what I was referring to was this problem of--for example--having a feedback system where the send~ is inside a subpatch and the receive~ is outside of

Re: [PD] Re: namecanvas

2007-02-10 Thread Frank Barknecht
Hallo, Matteo Sisti Sette hat gesagt: // Matteo Sisti Sette wrote: F. Barknecht wrote Well, that's an error of the patch-author. Well, whenever a program crashes and can't recover (that is, it forces the operating system to close it), it is ALWAYS a bug of the program (unless it is of

Re: [PD] isosonic curves : level the perceptual loudness of different pitches

2007-02-10 Thread Franz Zotter
Hi Alexandre, hi all, Yesterday I corrected an error in mtx_phon_curve-help.pd and changed the behaviour of [mtx_phon_curve] abstraction (pure-data.cvs.sf.net/cvsroot/puredata/externals/iem/iemmatrix/abs). Now the output is in dB, just like everyone would expect; before it was p^2/p0^2 ...

[PD] Build of PD-extended (CVS)/Linux hangs

2007-02-10 Thread surfer
Hi I never believed.you could install PD and all externals with just one command ;-) Trying to build Pd-extended from CVS (packages/linuxmake/make install) and compilation hangs at mrpeach/str/str.c Would it not be better to have a more possibilities to modify the auto-build

[PD] Re: namecanvas

2007-02-10 Thread Matteo Sisti Sette
While I agree that Pd should not crash here, I don't agree with your reasoning: Pd is a programming language. It is possible to write buggy programs in Pd just as in [...] Javascript. That's not the fault of Pd or [...] Javascript (I've stripped out the part about C because that's a compiled

Re: [PD] stereo in pd

2007-02-10 Thread Sciss
hi alex, [readsf~] works for me. the first argument is the number of channels. it's true though that you cannot have an absolute drop-out-free loop, because you need to send a message to replay the file after it reached the end. is that the problem? if so and your files are only in the

Re: [PD] audio send recieve feedback quirk

2007-02-10 Thread Frank Barknecht
Hallo, Steffen hat gesagt: // Steffen wrote: On 10/02/2007, at 0.51, Frank Barknecht wrote: Just remember, that everything, that is connected directly trough signal cords, will be evaluated top to bottom, and everything that is not connected through signal chords, will be evaluated in

Re: [PD] Build of PD-extended (CVS)/Linux hangs

2007-02-10 Thread Martin Peach
surfer wrote: Hi I never believed.you could install PD and all externals with just one command ;-) Trying to build Pd-extended from CVS (packages/linuxmake/make install) and compilation hangs at mrpeach/str/str.c That one will only compile if pd is patched to use strings. I tried to

Re: [Pd] OSC on Winxp

2007-02-10 Thread Martin Peach
Chuckk Hubbard wrote: Trying to load routeOSC.dll, packOSC.dll, and unpackOSC.dll in Windows. All three are the compiled files from http://puredata.info/Members/martinrp/OSCobjects and Pd is unable to load any of them. I'm not entirely clear on this... If these were compiled with Visual C++

Re: [PD] Problem with Ground Control Pro and [midi-in] response to Derek

2007-02-10 Thread Benjamin Brown
Derek, Thanks for the response, I have the audio midi setup window open and the USB Uno MIDI interface is viewable. I then started PD, selected the Uno from the midi preferences in PD and ran the test patch(i have also tried this by starting pd then starting the utility). I receive no messages

[PD] microphone sampling

2007-02-10 Thread Jiri Heitlager
Hello, i am quit knew to puredata and in the process of descovering its possiblities. Tonight I wanted to experiment with microphone input, instead I have spend all night googling for a how-to on using the mic in pd. I had no luck. So I tried to test the mic myself and did, [adc~] | [dac~]

Re: [PD] microphone sampling

2007-02-10 Thread Alexandre Matheson
Hi Jiri,there are a few ways to record in pd…there is tabwrite~ which will record its input to an array and you can later save it to disk or there is writesf~ which will record to disk directly. See the attached patch. record.pd Description: Binary data alexOn 10-Feb-07, at 5:08 PM, Jiri

[PD] object sizes

2007-02-10 Thread marius schebella
hi, I am a little bit confused... is it possible that all objects in Gem are drawn twice as big as they should??? [gemhead] | [translateXYZ 2 0 0] | [square 2] size 2 of the square should be the width (=height). but translate 2 only shifts the square half of its width. or am I

Re: [PD] object sizes

2007-02-10 Thread cyrille henry
yes. the radius of a [circle 1] is 1. so it's diameter is 2, like all other Gem object. cyrille marius schebella a écrit : hi, I am a little bit confused... is it possible that all objects in Gem are drawn twice as big as they should??? [gemhead] | [translateXYZ 2 0 0] | [square 2]

Re: [PD] Build of PD-extended (CVS)/Linux hangs

2007-02-10 Thread Hans-Christoph Steiner
On Feb 10, 2007, at 1:30 PM, Martin Peach wrote: surfer wrote: Hi I never believed.you could install PD and all externals with just one command ;-) Trying to build Pd-extended from CVS (packages/linuxmake/make install) and compilation hangs at mrpeach/str/str.c That one will

Re: [PD] object sizes

2007-02-10 Thread cyrille henry
marius schebella a écrit : circle, yes, but why should the width of [rectangle 4 3] be 8, and the height 6??? It is not what one would expect? a [rectangle 4 3] is not based on this point : (0,0); (x,0); (x,y); (0,y). it is centered. so i think it's quit logic to have a [rectangle x,y]

Re: [PD] object sizes

2007-02-10 Thread marius schebella
hi cyrille, hmm, I started working with other 3d software (blender, maya) and wanted to build similar stuff in gem, that is why I took a closer look into measures and values. I think I would want a [rectangle 4 3] really based on (-x/2, -y/2). or even better with a message argument rectmode

Re: [PD] object sizes

2007-02-10 Thread marius schebella
circle, yes, but why should the width of [rectangle 4 3] be 8, and the height 6??? It is not what one would expect? m. cyrille henry wrote: yes. the radius of a [circle 1] is 1. so it's diameter is 2, like all other Gem object. cyrille marius schebella a écrit : hi, I am a little bit

Re: [PD] Build of PD-extended (CVS)/Linux hangs

2007-02-10 Thread Luigi Rensinghoff
For Pd-extended, just add the patch to packages/patches, and it will be automatically included in the nightly builds. Then str.c should compile too. Thanks for the immediate answer. But i need more information for that: Which patch ? where do i get it from ? How do i add it ? Sorry if

Re: [PD] Build of PD-extended (CVS)/Linux hangs

2007-02-10 Thread Luigi Rensinghoff
OK ! After deleting the str folder the next stop is at unauthorized/speex~ is speex.h missing ? or the path not specified ? I dont know if i should adress the build-creators or the externals- creator... In that case Hi to Yves ;-) Ciao Luigi

Re: [PD] playsf~ stereo

2007-02-10 Thread marius schebella
hi, would be nice to look at the [player] abstraction, but what I can tell from looking at that patch is, that there is only one outlet of your player, which means mono... you probably want to use 2 of them for left and right channel??? m. alexandre r. decoupigny wrote: hello there list, i

Re: [Pd] OSC on Winxp

2007-02-10 Thread Chuckk Hubbard
I think I have Miller's binary. I never compiled for Windows before. I put the .c files in my /pd/src directory and typed 'gcc routeOSC.c' etc., and each says there are undefined references, which I take to mean it can't find m_pd.h. So the problem appears to be that I don't know how to do

Re: [Pd] OSC on Winxp

2007-02-10 Thread Chuckk Hubbard
Besides me being a moron... I'll try downloading the files now. On 2/10/07, Chuckk Hubbard [EMAIL PROTECTED] wrote: I got this output trying to compile: C:\pd-0.40-2\pd\extragcc routeOSC.c routeOSC.c:5: error: syntax error before '' token routeOSC.c:9: error: stray '@' in program

Re: [PD] playsf~ stereo

2007-02-10 Thread marius schebella
missing the [player] abstraction...? m. alexandre r. decoupigny wrote: hello there list, i am having trouble with playing stereo files in pd. what im patching is a player that plays back 1.5 min. stereo files randomly as part of a bigger patch.. here is what i made, but noticed now that its