Re: [PD] analogue clipping

2007-05-09 Thread martin brinkmann
hard off wrote: > what's the best and most cpu efficient way to clip a signal in an > analogue fashion, rather than getting nasty digital distortion? i have used the function x/abs(x+a) applied to the audio input, and it sounded quite ok. a controls the 'steepness' of the 'distortion-function', g

Re: [PD] dsp lowest frequency?

2007-05-09 Thread Bosko Milakovic
Thanks Roman and Marius. >From: Roman Haefeli <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Bosko Milakovic <[EMAIL PROTECTED]> >CC: pd-list@iem.at >Subject: Re: [PD] dsp lowest frequency? >Date: Tue, 08 May 2007 18:21:10 +0200 > >dc is always the lowest possible frequency, no matter what

Re: [PD] Problem compiling wiimote external

2007-05-09 Thread Roman Haefeli
On Wed, 2007-05-09 at 00:38 -0400, Chris McCormick wrote: > On Tue, May 08, 2007 at 09:12:15PM -0400, Hans-Christoph Steiner wrote: > > It's just a matter of someone doing the work to get it building. > > Unless CWiid is in Debian, this could be a fair amount of work. I'll > > happily answer

Re: [PD] analogue clipping

2007-05-09 Thread Enrique Erne
hi hardoff here is an other kind of waveshaping (i think). the idea was to divide a signal by it self so you would get a rectangle. s / s = 1 and further if divide a signal with a range from the signals own value to 1 you don't get a hard rectangle i try to write the formula s / (slider betwe

Re: [PD] accuracy of signal/message-objects

2007-05-09 Thread Frank Barknecht
Hallo, Frank Barknecht hat gesagt: // Frank Barknecht wrote: > This interval also is independent from the blocksize! You can > check this with attached patch Now you can... Ciao -- Frank Barknecht _ __footils.org_ __goto10.org__ blocksize-messages.pd Description: applicat

Re: [PD] question about pdx7 for Frank Barknecht

2007-05-09 Thread Frank Barknecht
Hallo Andres, Andres Ferrari hat gesagt: // Andres Ferrari wrote: > hello Frank, > i was testing pdx7 and I have some questions > > i cant load the adsr envelopes saved with careGUI.is > possible? Hm, I cannot reproduce this unfortunatly. :( Does this only affect the envelopes and are the other

Re: [PD] accuracy of signal/message-objects

2007-05-09 Thread Frank Barknecht
Hallo, marius schebella hat gesagt: // marius schebella wrote: > does this all make sense? > smaller blocksizes give you the possibility to handle messages in even > shorter time intervals, bigger blocksizes may help to declick for > example when you write to arrays. [for some objects blocksize

Re: [PD] question about pdx7 for Frank Barknecht

2007-05-09 Thread hard off
while we're on the subject: frank, did you or anyone ever make presets for pdx7? there are datasheets available here: http://www.thedx7.co.uk/DataSheet%20Banks.htm ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.pure

Re: [PD] [GEM-dev] Gem Compiling os x xcode problems

2007-05-09 Thread nosehair911
Thats cool, I think thats an elegant solution. Then I dont get why I still get this message from Gem: [text2d]: Gem has been compiled without FONT-support ! This is from the latest auto-build (may 9). I can clearly see the libfreetype.6.dylib in the correct path. Well I'm still very green at

[PD] Geo absolute position

2007-05-09 Thread nosehair911
I have been looking for this answer for a while now. In Gem, is there a way to get the absolute position of a geo after its been rotated, moved, rotated again, etc...? For example: [gemhead] | [translateXYZ 0 1 0] | [rotateXYZ 0 0 90] | [translateXYZ 1 0 0] | [circle 0.1] | [absolute position]

Re: [PD] Pd-extended

2007-05-09 Thread Hans-Christoph Steiner
There is a compile error that isn't being fixed. .hc On May 9, 2007, at 8:55 AM, Marc D. Demers wrote: Hi, Hans, Just a simple question: why there is no Pd-0.40.2-extended for Windows, only Pd-0.39.2-extended? Regards, Marc Soyez parmi les premiers à essayer Windows Live Mail.

Re: [PD] Gem DL Out Of Date! - FTGL continued

2007-05-09 Thread Hans-Christoph Steiner
Any Pd-related download should be listed here: http://puredata.info/downloads/ If something isn't there, please add it to the "member downloads" section. .hc On May 9, 2007, at 5:14 AM, timon wrote: Nice one. Where do the autobuilds reside? Thanks, T. On 7 May 2007, at 04:10, Hans-Chri

Re: [PD] Geo absolute position

2007-05-09 Thread chris clepper
gemlist_info will give you the current transformation matrix. On 5/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have been looking for this answer for a while now. In Gem, is there a way to get the absolute position of a geo after its been rotated, moved, rotated again, etc...? For exam

Re: [PD] OT - Pd on Leno

2007-05-09 Thread jared
Congrats man! Very cool. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dafydd Hughes Sent: Tuesday, May 08, 2007 9:14 PM To: pd-list@iem.at Subject: [PD] OT - Pd on Leno Hi folks If you've got nothing better to do this evening, the band I'm touring wi

Re: [PD] Geo absolute position

2007-05-09 Thread Roman Haefeli
hi alain because of the same problem, i wrote a small collection of vector processing abstractions. instead of using several [translateXYZ] and [rotateXYZ] objects in one chain, i decided to only use one [translateXYZ] for the position of the geo and one [rotatateXYZ] for its orientation. for calc

Re: [PD] Geo absolute position

2007-05-09 Thread nosehair911
Thanks, I cant beleive I totally missed that. This is going to be very usefull. Alain > > From: "chris clepper" <[EMAIL PROTECTED]> > Date: 2007/05/09 Wed AM 09:48:59 EDT > To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > CC: pd-list@iem.at > Subject: Re: [PD] Geo absolute position > > gemlist_info

Re: [PD] Geo absolute position

2007-05-09 Thread Roman Haefeli
oh god i should have really asked that question much earlier. much effort wasn't necessary at all i didn't know, that it could be so easy. but nevermind, at least i hopefully learned something while making the vector_abstractions thank you, chris, for that (important) hint. roman

Re: [PD] Geo absolute position

2007-05-09 Thread nosehair911
Roman, Thanks for your help. Chris just clued me in on gemlist_info, check out the help file it looks like what we both have been looking for. Plus you can do as many transformations as you like and then put gemlist_info at the end of the chain to give you the absolute position, shear, size a

Re: [PD] Bug in Pool?

2007-05-09 Thread Thomas Grill
Hi Luke, thanks for the report. It's a typical buffer overrun (caused by a lng line of data), making quick-and-dirty code choke. I hope to fix it shortly, please stand by! greetings, Thomas Am 09.05.2007 um 04:24 schrieb Luke Iannini (pd): > Hi Thomas (and list), > I have run into what appe

Re: [PD] Geo absolute position

2007-05-09 Thread Roman Haefeli
On Wed, 2007-05-09 at 10:11 -0400, [EMAIL PROTECTED] wrote: > Roman, > Thanks for your help. Chris just clued me in on gemlist_info, check out the > help file it looks like what > we both have been looking for. Plus you can do as many transformations as you > like and then put > gemlist_info a

Re: [PD] [GEM-dev] Gem Compiling os x xcode problems

2007-05-09 Thread IOhannes m zmoelnig
[EMAIL PROTECTED] wrote: > Thats cool, I think thats an elegant solution. Then I dont get why I still > get this message from Gem: > > [text2d]: Gem has been compiled without FONT-support ! > > This is from the latest auto-build (may 9). which autobuild? currently there are several versions o

Re: [PD] [GEM-dev] Gem Compiling os x xcode problems

2007-05-09 Thread nosehair911
I went to the "latest" folder and downloaded this one: Pd-0.39.2-extended-rc2-macosx104-powerpc.dmg The build date is 9-May-2007. Is that the one I should have used? Alain > > From: IOhannes m zmoelnig <[EMAIL PROTECTED]> > Date: 2007/05/09 Wed AM 11:14:37 EDT > CC: Pure Data List , [EMAIL PR

[PD] unknown audio I/O error fixed

2007-05-09 Thread Greg Sabo
Ha- I just assumed that it wouldn't work, but it works fine- I just overreacted. Thanks for your help! -Greg ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] OT - Pd on Leno

2007-05-09 Thread Kevin McCoy
http://youtube.com/watch?v=rlxrjIMNIeg Excellent, band sounded great! I can't wait to see you guys in Ohio. So you're the one at the piano with the midi controller? Looking smooth, Dafydd! Congrats again, Kevin On 5/8/07, Dafydd Hughes <[EMAIL PROTECTED]> wrote: Hi folks If you've got not

Re: [PD] accuracy of signal/message-objects

2007-05-09 Thread Steffen
First of all thanks for all the elaborate explanations. They are all greatly appreciated! On 08/05/2007, at 20.06, Roman Haefeli wrote: > On Tue, 2007-05-08 at 18:37 +0200, Steffen wrote: > >> I understand that decreasing the block size will possible requirer >> more computation/logical time th

Re: [PD] mod~ ???

2007-05-09 Thread Miller Puckette
Oops.. that's a bug. To work around it for now, add 1 (or a higher integer), then wrap... cheers Miller On Mon, May 07, 2007 at 09:40:53PM +0200, Steffen wrote: > > On 07/05/2007, at 20.51, Claude Heiland-Allen wrote: > > Note: 0 -> [wrap~] -> 1, which is weird (and undesirable in my eyes). > >

Re: [PD] accuracy of signal/message-objects

2007-05-09 Thread Frank Barknecht
Hallo, Steffen hat gesagt: // Steffen wrote: > >> And therefore that the information in a block is available > >> to the program to process. Which also means that after that block has > >> been processes the information is not longer available. Is that true? > > > > > > i am afraid, i couldn't fu

[PD] Percussa AudioCubes & Pd

2007-05-09 Thread Steffen
Have anyone tried it? I'm just curious. I've asked Bert Schiettecatte who claims that the HID external will limit what the cubes can do. That might well be, i don't know. I guess there is no dedicated AudioCube external, hence i wondered. ___ PD-l

[PD] freiOr plugins

2007-05-09 Thread Pagano, Patrick
Does anyone have a way to read freiOr plugins into pd/pdp/pidip/GEM http://www.piksel.org/frei0r I would love to have something similar to the pdp_freeframe external to enhance the visuals Sevvy? Cheers Pat ___ PD-list@iem.at mailing list UNSUBSC

Re: [PD] Percussa AudioCubes & Pd

2007-05-09 Thread Hans-Christoph Steiner
Do you have any info on such limitations? I would like to hear. .hc On May 9, 2007, at 4:19 PM, Steffen wrote: > Have anyone tried it? > > I'm just curious. I've asked Bert Schiettecatte who claims that the > HID external will limit what the cubes can do. That might well be, i > don't know. I

Re: [PD] [GEM-dev] Gem Compiling os x xcode problems

2007-05-09 Thread Hans-Christoph Steiner
Both Pd-extended auto-builds should work, so please report on either/ both. I am also seeing problems. If I manually run "make gem" it seems to work, but not as an auto-build... arg. .hc On May 9, 2007, at 11:15 AM, <[EMAIL PROTECTED]> wrote: > I went to the "latest" folder and downloaded

Re: [PD] Percussa AudioCubes & Pd

2007-05-09 Thread Steffen
On 09/05/2007, at 22.31, Hans-Christoph Steiner wrote: > Do you have any info on such limitations? I would like to hear. Nope, no details. There is a contact form at the Percussa website. I just asked him if the cubes worked with Pd. So i got a similar simple answer, fair enough i think. I

Re: [PD] cyclone/counter bug

2007-05-09 Thread Hans-Christoph Steiner
If you have access to the CVS, then check it in directly. Otherwise submit the updated patch to the patch tracker. Or add it to the bug report and change it to a "Patch". .hc On May 8, 2007, at 12:22 PM, Kyle Klipowicz wrote: > Ok, I will use the [min $1( message. I was too unobservant to

Re: [PD] OSCroute doesn't route deep targets

2007-05-09 Thread Hans-Christoph Steiner
On May 1, 2007, at 10:39 AM, Stephen Sinclair wrote: >> Any idea why this works like this? Or possible ideas as to >> rigging this? > > I'd be willing to hack on it to get it to do this... > I'll let you know if it works. > alternatively try martin peach's OSC objects. > > note: my bugfix for

Re: [PD] OT - Pd on Leno

2007-05-09 Thread paris
Thanks for sharing! Congrats Dafydd! Feisty! I didn't know you played with Feist - great stuff and would seem to me a very suitable outlet for you to do more audio experimentation while still in a "pop" format. Best, p > Original Message > Subject: Re: [PD] OT - Pd on Leno > F

Re: [PD] Pd-0.39.2-extended-RC1. osx --good work

2007-05-09 Thread Hans-Christoph Steiner
You'll have better luck on the Pd list with this problem, since I don't really know much about graphics or Gem. I cc'ed the list. .hc On May 4, 2007, at 8:14 PM, alan brooker wrote: Hi Thanks for your help These are my specs... Machine Name:Mac mini Machine Model:PowerMac10,1

[PD] ANN: munger1~ 1.3.0 released

2007-05-09 Thread Ivica Ico Bukvic
First of all, apologies for wasting everyone's bandwidth with the last release which was/is for most intents and purposes broken. This new release dubbed "I hate MSVC" ought to [hopefully] solve lingering problems. Download from usual place: http://ico.bukvic.net/Max/munger1~_latest.tar.gz (~400KB

[PD] self-centering random walk

2007-05-09 Thread Claude Heiland-Allen
Here's an example of a random walk that is biased towards the middle of its range and is guaranteed not exceed its bounds. Hope someone finds it useful, I'm using it for melodies in a generative piece (I'll publish the full patch in a couple of weeks). Any statisticians want to analyse it fur

Re: [PD] analogue clipping

2007-05-09 Thread Claude Heiland-Allen
Claude Heiland-Allen wrote: > Otherwise, I think there are some theorems about waveshaping and the > amount of oversampling necessary to avoid aliased frequencies and that > nasty digital sound... http://groups.google.co.uk/group/comp.dsp/msg/9576a7a248851937

Re: [PD] OT - Pd on Leno

2007-05-09 Thread Kyle Klipowicz
Yeah man! I love Feist! I hope to join the Berlin diaspora myself soon. do you live there? ~Kyle On 5/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Thanks for sharing! > > Congrats Dafydd! Feisty! > > I didn't know you played with Feist - great stuff and would seem to me a > very suitable

Re: [PD] analogue clipping

2007-05-09 Thread Kyle Klipowicz
As a fan of the "Dirty French" electronic music of late, this is a great thread! ~Kyle > On 5/9/07, Claude Heiland-Allen <[EMAIL PROTECTED]> wrote: > > Claude Heiland-Allen wrote: > > > Otherwise, I think there are some theorems about waveshaping and the > > > amount of oversampling necessary to