Re: [PD] I am a new user confused as to why I cant get GEM object to work.

2009-02-24 Thread Simon Wise
Max wrote: There is no need for X11 if you want to use GEM. only PDP/PidiP and Gridflow depend on X11, but you said you want to run GEM. the errors you posted suggest that you probably use a build for intel in a PPC machine or the other way round. make sure you have downloaded the right

Re: [PD] symbol anxiety

2009-02-24 Thread Frank Barknecht
Hallo, Mathieu Bouchard hat gesagt: // Mathieu Bouchard wrote: On Mon, 23 Feb 2009, Phil Stone wrote: Oh! Very good. I didn't realize that an identical symbol would get re-used. For completeness' sake, I will make a new [ps-stopwatch] that does not leak (and is plain vanilla, to boot).

Re: [PD] phase-canceling

2009-02-24 Thread Frank Barknecht
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote: multiply the mic signal by -1 using [*~ -1], then add it back to the original signal using [+~] Or multiply by 0. :) Ciao -- Frank BarknechtDo You RjDj.me? _ __footils.org__

Re: [PD] phase-canceling

2009-02-24 Thread Derek Holzer
simple answers for apparently simple questions! ;-) d. Frank Barknecht wrote: Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote: multiply the mic signal by -1 using [*~ -1], then add it back to the original signal using [+~] Or multiply by 0. :) Ciao -- derek holzer :::

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread Sebastien Lelong
Hi Frank, hi guys, Many, many thanks for your explanation and your example ! I've finally understood how to use [trigger] objects and store value in a [float] (I have to admit I needed quite a lot of time, a paper and a pen: I must be very slow thinking in Pd :)). Indeed, a nice exercise. I have

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread cyrille henry
hello, have you tried to look at mapping/timeroll object. it's exactly what franck describ... cyrille Sebastien Lelong a écrit : Hi Frank, Thanks for your help. I'm getting things that kind of scroll... building an horrible patch :) Some values are random, I guess I have a problem

Re: [PD] I am a new user confused as to why I cant get GEM object to work.

2009-02-24 Thread chris clepper
On Tue, Feb 24, 2009 at 3:11 AM, Simon Wise simonzw...@gmail.com wrote: it seems that Gem also depends on X11 libraries - for the font stuff I guess??, quoting the earlier post ... That is only because it is built incorrectly. ___ Pd-list@iem.at

Re: [PD] pd and tcp: what to do against crashes?

2009-02-24 Thread Martin Peach
Roman Haefeli wrote: On Mon, 2009-02-23 at 19:05 -0500, Martin Peach wrote: Roman Haefeli wrote: On Mon, 2009-02-23 at 21:03 +, Martin Peach wrote: OK I fixed it now in svn. It works on debian. The select() call was not being done properly. Now I need to test it on Windows again. hey,

Re: [PD] symbol anxiety

2009-02-24 Thread Mathieu Bouchard
On Tue, 24 Feb 2009, Frank Barknecht wrote: Is there a difference between symbols and immutable strings like Lua or Java have them? Immutable strings are deallocatable. If this happened to pd symbols that they became deallocatable, then externs couldn't keep a t_symbol pointer unless they

Re: [PD] pd and tcp: what to do against crashes?

2009-02-24 Thread Roman Haefeli
--- Martin Peach martin.pe...@sympatico.ca schrieb am Di, 24.2.2009: Roman Haefeli wrote: On Mon, 2009-02-23 at 19:05 -0500, Martin Peach wrote: Roman Haefeli wrote: On Mon, 2009-02-23 at 21:03 +, Martin Peach wrote: OK I fixed it now in svn. It works on debian. The select()

Re: [PD] phase-canceling

2009-02-24 Thread Mathieu Bouchard
On Tue, 24 Feb 2009, Frank Barknecht wrote: Derek Holzer hat gesagt: // Derek Holzer wrote: multiply the mic signal by -1 using [*~ -1], then add it back to the original signal using [+~] Or multiply by 0. :) Then just don't connect the wire. _ _ __ ___ _ _

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread Frank Barknecht
Hallo, Sebastien Lelong hat gesagt: // Sebastien Lelong wrote: I have one question though (not related to [trigger]). In your example, as in Martin's, you use $0-a16 to name the array. I understand $0 is used when building an abstraction and creating multiple instances of this abstraction. My

Re: [PD] phase-canceling

2009-02-24 Thread Lao Yu
I don't understand how multiplying the amplitude of an input by 0 cancels phase. It results in zero output which is pretty silent but it doesn't cancel phase. Regardless of the initial post, phase canceling of a signal can be pretty interesting when one want to 'filter out' an original sound

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread Frank Barknecht
Hallo, cyrille henry hat gesagt: // cyrille henry wrote: have you tried to look at mapping/timeroll object. I think, there is a minor bug in timeroll: Instead of [list apppend 0] it should probably be [list prepend 0] (Btw. I think the dependency of mapping on purepd is a bit, uhm,

Re: [PD] phase-canceling

2009-02-24 Thread Frank Barknecht
Hallo, Lao Yu hat gesagt: // Lao Yu wrote: I don't understand how multiplying the amplitude of an input by 0 cancels phase. It results in zero output which is pretty silent but it doesn't cancel phase. What Derek used as an example was phase cancellation of a signal with *itself* which is

[PD] PD and Wiring

2009-02-24 Thread enrique franco
Hi, Does anybody know how to read data coming from Wiring through the serial port in PD? Thanks, -- Enrique Franco Telefono/Phone: +572 5552334 ext 388 Webpage: http://richie.idc.ul.ie/~enrique/ http://www.iua.upf.es/~ffranco/pfm.htm ___

Re: [PD] symbol anxiety

2009-02-24 Thread Phil Stone
Mathieu Bouchard wrote: On Mon, 23 Feb 2009, Roman Haefeli wrote: for instance, when using OSC, probably every message is a new symbol. so i guess, it cannot be avoided, even if text processing is done outside of pd, unless a string type is introduced (is that correct?). Every OSC target

Re: [PD] symbol anxiety

2009-02-24 Thread Phil Stone
Phil Stone wrote: Mathieu Bouchard wrote: On Mon, 23 Feb 2009, Roman Haefeli wrote: for instance, when using OSC, probably every message is a new symbol. so i guess, it cannot be avoided, even if text processing is done outside of pd, unless a string type is introduced (is that

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread cyrille henry
Frank Barknecht a écrit : Hallo, cyrille henry hat gesagt: // cyrille henry wrote: have you tried to look at mapping/timeroll object. I think, there is a minor bug in timeroll: Instead of [list apppend 0] it should probably be [list prepend 0] you're right. thanks. (Btw. I think

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread Martin Schied
Hi Sebastien, Sebastien Lelong hat gesagt: // Sebastien Lelong wrote: I have one question though (not related to [trigger]). In your example, as in Martin's, you use $0-a16 to name the array. I understand $0 is used when building an abstraction and creating multiple instances of this

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread Frank Barknecht
Hallo, cyrille henry hat gesagt: // cyrille henry wrote: (Btw. I think the dependency of mapping on purepd is a bit, uhm, uncomfortable.) i strongly agree here. i need your help to have Hans authorisation to remove it! Hehe, I think you two better fight it out without me. :) But anyway I

[PD] [PD-announce] Fwd: NYC Blender Users's meeting: Sat. Mar. 7th 2pm

2009-02-24 Thread Hans-Christoph Steiner
Since he's showing Blender+ Pd, I thought I forward it here: Begin forwarded message: From: Nick Porcaro n...@porcaro.org Date: February 21, 2009 7:55:49 PM EST To: Nick Porcaro n...@porcaro.org Subject: NYC Blender Users's meeting: Sat. Mar. 7th 2pm, Polytechnic University, Rogers Hall

Re: [PD] phase-canceling

2009-02-24 Thread yohannes
Mathieu Bouchard schrieb: On Tue, 24 Feb 2009, Frank Barknecht wrote: Derek Holzer hat gesagt: // Derek Holzer wrote: multiply the mic signal by -1 using [*~ -1], then add it back to the original signal using [+~] Or multiply by 0. :) Then just don't connect the wire. my fafourit solution

Re: [PD] Array that scrolls from right to left

2009-02-24 Thread cyrille henry
Frank Barknecht a écrit : Hallo, cyrille henry hat gesagt: // cyrille henry wrote: (Btw. I think the dependency of mapping on purepd is a bit, uhm, uncomfortable.) i strongly agree here. i need your help to have Hans authorisation to remove it! Hehe, I think you two better fight it

Re: [PD] PD and Wiring

2009-02-24 Thread Hans-Christoph Steiner
There is a Firmata library for the Wiring board, you should be able to use that with Pduino [arduino] object. .hc On Feb 24, 2009, at 11:28 AM, enrique franco wrote: Hi, Does anybody know how to read data coming from Wiring through the serial port in PD? Thanks, -- Enrique Franco

[PD] [ANN] myu Max-Unity Interoperability Toolkit v.1.0 Released

2009-02-24 Thread Ivica Ico Bukvic
It is my great pleasure to announce immediate availability of the μ [myu] Max-Unity Interoperability Toolkit version 1.0. μ [myu] is designed to simplify communication between the Max/MSP/Jitter http://www.cycling74.com and Unity3D http://www.unity3d.com rapid prototyping environments. Utilizing

[PD] Workarounds for number truncation 6 digits?

2009-02-24 Thread Florian Hollerweger
Hi, I'm picking up a thread here from November last year: As IOhannes has pointed out at http://lists.puredata.info/pipermail/pd-list/2008-11/065883.html the Pd editor truncates long numbers to 6 digits (which of course has nothing to do with Pd's floating point resolution). IOhannes has also

[PD] [PD-announce] Liwoli 2009 - Call for projects - Art University Linz

2009-02-24 Thread propaganda
purrr sayz the kitty wooof sayz the puppy sorry sayz the cross-poster -- Liwoli 2009 hacklab for art and open source 23 - 26 April 2009 Art University Linz http://linz.linuxwochen.at -- Liwoli 2009 is a three day long Hacklab and an open invitation to everyone who would like to participate

Re: [PD] pd and tcp: what to do against crashes?

2009-02-24 Thread Martin Peach
Roman Haefeli wrote: --- Martin Peach martin.pe...@sympatico.ca schrieb am Di, 24.2.2009: Roman Haefeli wrote: On Mon, 2009-02-23 at 21:03 +, Martin Peach wrote: Yes, I agree. I think a status outlet on the [tcpserver] could be extended later to have more messages. Some of the

Re: [PD] PD and Wiring

2009-02-24 Thread Hans-Christoph Steiner
No, it's here: http://at.or.at/hans/pd/objects.html .hc On Feb 24, 2009, at 2:10 PM, enrique franco wrote: Hans, Does this object [arduino] come with Pd-extended? Thanks, Enrique On Tue, Feb 24, 2009 at 1:31 PM, Hans-Christoph Steiner h...@eds.org wrote: There is a Firmata library

Re: [PD] phase-canceling

2009-02-24 Thread mrz
yes,i find it also not an absurd question. I had build a loop machine, and i did want to phase cancel the sound is coming out of the speakers to be able recording and play again new stuff over that loop in realtime (overdubbing). But as far as i understand it is a really complex thing to do so as

Re: [PD] A non-leaky stopwatch

2009-02-24 Thread João Pais
Hi, do you want to pack this together with pd-ext? It would be easier for general people to keep track of it. João Pais Hello, Attached is a stopwatch, derived from [maketime], that doesn't pollute the symbol table (i.e., indefinitely leak memory), thanks to Frank B.'s idea for keeping

Re: [PD] Pd-extended on Ubuntu Intrepid 64bit success

2009-02-24 Thread Hans-Christoph Steiner
Excellent, good news! FYI: that PDP bug has been fixed in trunk, so I am guessing you built the Pd-0.40.3 branch. Pd-0.40.3 has issues with 64-bit and arrays. P-0.41 is all good so far with 64-bit. .hc On Feb 23, 2009, at 11:44 PM, danomatika wrote: Howdy all, I got PD-extended to

Re: [PD] streaming audio and video in Linux

2009-02-24 Thread Hans-Christoph Steiner
pdp_theonice~ or something like that is another. .hc On Feb 23, 2009, at 11:54 PM, John Harrison wrote: Somebody was just asking me about options for streaming audio and video in Pd-extended. I wouldn't mind help with the answer. Here's what I have gathered so far. Audio: streamin~ and

Re: [PD] phase-canceling

2009-02-24 Thread Martin Schied
hi, mrz schrieb: yes,i find it also not an absurd question. I had build a loop machine, and i did want to phase cancel the sound is coming out of the speakers to be able recording and play again new stuff over that loop in realtime (overdubbing). But as far as i understand it is a really

Re: [PD] pd on Ubuntu 64bit?

2009-02-24 Thread Hans-Christoph Steiner
On Feb 24, 2009, at 1:05 AM, danomatika wrote: On Tue, 2009-02-24 at 00:03 -0600, John Harrison wrote: danomatika wrote: I made a 64bit build of pd-extended using the pd core (0.41 I believe) from the pd-extended svn and it has this table bug. It seems to only access half of the

Re: [PD] startup problems

2009-02-24 Thread Hans-Christoph Steiner
I recommend not installed the XQuartz if you just want to get things working. If you want to experiment, then sure, go ahead. These instructions have worked on many a Tiger machine: http://puredata.info/docs/faq/macosx .hc On Feb 21, 2009, at 8:33 PM, Conor Higgins wrote: right I will

Re: [PD] phase-canceling

2009-02-24 Thread joel silvestre
Le lundi 23 février 2009 à 23:02 +0100, yohannes a écrit : hello everybody, maybe sounds absurd: is it possible to cancel an whole signal of an mic input through phase-canceling? if yes, how can i do dat in pd? Hi yohannes, maybe you are looking for something like an acoustic echo