Re: [PD] Handling numbers read from a file

2010-03-03 Thread Hans Roels
There's a simple solution to know the size of an array in Pd vanilla (it has been posted on this list before). If your array is called example, send a bang to [expr size("example")] Hansr At 16:03 2/03/2010, Matteo Sisti Sette wrote: > As all my data are numbers, [tabread] should work fine. A

Re: [PD] Handling numbers read from a file

2010-03-03 Thread Matteo Sisti Sette
Hans Roels escribió: There's a simple solution to know the size of an array in Pd vanilla (it has been posted on this list before). If your array is called example, send a bang to [expr size("example")] That's great!! I didn't know that, and I so often needed it! Thanks a lot. However in th

Re: [PD] Textfile vs. Lists vs. Arrays vs. ?

2010-03-03 Thread saint
Ah wow. Looks like I may be able to use that with minimal changes to the patch! Thanks Andras, I'll give that a go. --- On Sun, 28/2/10, András Murányi wrote: > From: András Murányi > Subject: Re: [PD] Textfile vs. Lists vs. Arrays vs. ? > To: "pd list" > Cc: "saint" > Date: Sunday, 28 Febr

Re: [PD] http client native in pd?

2010-03-03 Thread Marco Donnarumma
Thanks for that guys... I worked it out in a quite rough way (parsing the ping results coming from shell) few days ago and was looking for a proper and cheaper way to do it. And here's a version that gets the latest solar wind speed from the ACE > satellite... > > Martin > > hc wrote: > > > > A

Re: [PD] GEM units

2010-03-03 Thread Frank Barknecht
Hallo, Jon hat gesagt: // Jon wrote: > this must be documented somewhere, but i can't locate it. > is there some logic to the size units for GEM objects? like: what > exactly is "2" in [cube 2]? It's twice as much as 1. As Hannah Montana (or Talk Talk for the older ones among us) sang: Life's Wh

Re: [PD] GEM units

2010-03-03 Thread Frank Barknecht
Hallo, ydego...@gmail.com hat gesagt: // ydego...@gmail.com wrote: > i frankly never understood it, > why a gem is not [0..1]x[0..1], > a big mystery to me... > > does it have to do with cabalistic practices? > the [-4.4...4.4]x[-2...2] or is it? I suppose it is influenced by the égalité idea of

[PD] 2ème Work-shop pure data au centre Datab az (Angoulême) 3-4 avril

2010-03-03 Thread philippe boisnard
J'avais oublié la date : 3-4 avril 2010 2ème Work-shop pure data au centre Databaz 100 rue du Gond Angoulême p ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] Handling numbers read from a file

2010-03-03 Thread Jack
If you have a list like [34 46 23 ...( and a [table mytab]. Then [list length] -> [resize $1( -> [s mytab] should help. Then you send a message [0 34 56 23 ...( -> [s mytab]. ++ Jack Le mercredi 03 mars 2010 à 09:23 +0100, Matteo Sisti Sette a écrit : > Hans Roels escribió: > > There's a simple

Re: [PD] integer values

2010-03-03 Thread Jack
Le mardi 02 mars 2010 à 22:47 -0800, Jonathan Wilkes a écrit : > > --- On Wed, 3/3/10, Jack wrote: > > > From: Jack > > Subject: Re: [PD] integer values > > To: "Jonathan Wilkes" > > Cc: pd-list@iem.at, "volker böhm" > > Date: Wednesday, March 3, 2010, 2:16 AM > > There is a very small error

[PD] Re : GEM units

2010-03-03 Thread Thibault Walter
In fact, if you don't change the gemwin's "view" parameters , z = 4. So if you create a 512 * 512 dimensions window for example, and if you want to build a square with te same dimensions, your square's size will be 4. Il you create a 600 * 400 dimensions window, the size of corresponding rectangl

Re: [PD] Pduino with Arduino Mega

2010-03-03 Thread David Kirkpatrick
Hi Bart, Rock and roll. If I use Paul's version of SimpleDigitalFirmata and add additional 'digital port enable' buttons and 'digital input status' indicators to your modified mega-test.pd patch then all the digital inputs work except pin 21 (which gets stuck on once you turn it on for the fir

[PD] A better pitch shifter?

2010-03-03 Thread Pierre Massat
Hi! I have been using Miller Puckette's delay-based pitch-shifter (from the audio examples) for quite a while now, and i was wondering if it would be possible to improve it a bit. In particular i'd like to reduce the delay length to lower latency (i m using it in real time). Would adding more delay

[PD] pix_video camera trouble

2010-03-03 Thread Jon
hi i want to use a usb microscope with GEM. with the macam driver installed, my macbook is able to get video from it on imovie, but i havent succeeded in forcing pix_video to get video from this cam instead of the built in isight. i have tried [dialog( but it only lets me select isight (and both DV

Re: [PD] Re : GEM units

2010-03-03 Thread Jon
i was just curious, since it's obviously not pixels or anything else that i could understand... i'll stick to the hannah montana/talk talk motto then. thank you all ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.pured

Re: [PD] A better pitch shifter?

2010-03-03 Thread Miller Puckette
Hi all, I tried making a mult-delay pitch shifter once. It was no good for reducing latency, but it did slightly decrease the phenomenon of double attacks one sometimes gets - but also reduces the presence of the sound, not a tradeoff I liked in the end. I tried a bunch of other things over a pe

Re: [PD] Re : GEM units

2010-03-03 Thread martin.peach
So GEM units are QuarterWindowSides, then? Martin t wrote: > > In fact, if you don't change the gemwin's "view" parameters , z = 4. > > So if you create a 512 * 512 dimensions window for example, and if you want > to build a square with te same dimensions, your square's size will be 4. > > Il y

Re: [PD] Re : GEM units

2010-03-03 Thread Roman Haefeli
A rectangle at position 0 0 0 with rotation 0 0 0 with height 4 exactly fits the screen height. So yes, there is actually a refernce: the screen height. Roman On Wed, 2010-03-03 at 17:02 +0100, Jon wrote: > i was just curious, since it's obviously not pixels or anything else > that i could unde

Re: [PD] Handling numbers read from a file

2010-03-03 Thread PSPunch
Thanks all, I have summed up the ideas and created an abstraction containing [textfile] with an extra counter to keep track of the pointer. When requested to step back, it first gates the output, rewinds, then bangs [textfile] until it reaches the one previous position. This is probably lea

Re: [PD] Re : GEM units

2010-03-03 Thread IOhannes m zmölnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 martin.pe...@sympatico.ca wrote: > So GEM units are QuarterWindowSides, then? no. mfasdr IOhannes -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkuOkYEACgk

Re: [PD] pix_video camera trouble

2010-03-03 Thread Jaime Oliver
make sure you have the macam component installed in the right place... /somthinglibrary/... On Wed, Mar 3, 2010 at 10:51 AM, Jon wrote: > hi > i want to use a usb microscope with GEM. with the macam driver > installed, my macbook is able to get video from it on imovie, but i > havent succeeded in

Re: [PD] A better pitch shifter?

2010-03-03 Thread Matt Barber
I've used this pitch shifter quite a lot for a number of different things -- how you use it seems to depend completely on context. For instance, if you're shifting mostly sustained sounds (so that attacks aren't so present), you can use a larger window size, which reduces some of the modulation ar

[PD] Re : Re : GEM units

2010-03-03 Thread Thibault Walter
4/4 = 1, yes. It works for X and Y if your screen is a square. If you create a 400 * 600 screen you will get a 2.67 * 4 rectangle If you create a 600 * 400 screen you will get a 6 * 4 rectangle t Le 3/03/10 17:27, « martin.pe...@sympatico.ca » a écrit : > > So GEM units are QuarterWindo

Re: [PD] A better pitch shifter?

2010-03-03 Thread Julian Villegas
Did you try shifter~ (http://julovi.net/j/?page_id=7)? This is a Pd PSOLA pitch shifter I ported from Max/MSP. Developed originally by Tristan Jesen and hosted here. I found it faster than SSB, and format friendly. I hope it helps. Julian Villegas (http://julovi.net) Me pregunto de un modo p

Re: [PD] A better pitch shifter?

2010-03-03 Thread Pierre Massat
Thank you all for your replies! I will give shifter~ a try tomorrow. Another related question : does any of you know how the digitech whammy pedal works? Considering how it sounds i'd say it basically tracks the pitch (the way sigmund~ would) and then generates a synthesized sound which kind of so

Re: [PD] Re : GEM units

2010-03-03 Thread cyrille henry
don't care about the unit, use the perspec message to set it to whatever you want/need. c martin.pe...@sympatico.ca a écrit : So GEM units are QuarterWindowSides, then? Martin t wrote: In fact, if you don't change the gemwin's "view" parameters , z = 4. So if you create a 512 * 512 dimensi

Re: [PD] integer values

2010-03-03 Thread Jonathan Wilkes
--- On Wed, 3/3/10, Jack wrote: > From: Jack > Subject: Re: [PD] integer values > To: "Jonathan Wilkes" > Cc: pd-list@iem.at, "volker böhm" > Date: Wednesday, March 3, 2010, 2:20 PM > Le mardi 02 mars 2010 à 22:47 -0800, > Jonathan Wilkes a écrit : > > > > --- On Wed, 3/3/10, Jack > wrote:

[PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread meino . cramer
Hi, I made a [pack t b f f f f f f f f f f ] And connect ten vertical sliders to inlet 2-10 (1-based). Then I connected the outlet of the [pack] to a message box with the following contents: [wave1 sinesum $1 $2 $3 $4 $5 $6 $7 $8 $9 $10] I added a tabread4-mimic and could display the wav

Re: [PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread Derek Holzer
The [pack] object and the [trigger] object should be separate. First create this: [pack 0 0 0 0 0 0 0 0 0 0 0] then each number box should look like this: [0] | [t b f] where the "f" outlet is connected to the corresponding inlet in [pack], and the "b" outlet is connected to the first, "hot

Re: [PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread Derek Holzer
The first slider does not need a [t b f] because it is connected to the "HOT" inlet already. When it sends a number the first inlet, the [pack] gives outlet. The others use a "bang" message so that [pack] sends output with all the numbers it has stored in the "COLD" inlets already when the "bang

Re: [PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread meino . cramer
I removed the [t b f] from the frist slider and connected it to the hot inlet of [pack] directly. But no change...the first sliders seems to know "on off" only. Patch attached Keep hacking! mcc Derek Holzer [10-03-03 20:08]: > The [pack] object and the [trigger] object should be separate.

Re: [PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread Derek Holzer
Hello Meino, please read the Generating Waveforms chapter again: http://en.flossmanuals.net/PureData/GeneratingWaveforms specifically the section titled "Using Sinesum". You'll see that the third element of the "sinesum" message, where you have your $1 now, is the length of the table (which i

Re: [PD] To pack or not to be packed that is the question ! (?)

2010-03-03 Thread Derek Holzer
Finally, if you add one more "bang" to your [trigger] at the far left, you can use that "bang" to send the "normalize 1" message ;-) D. On 3/3/10 9:34 PM, Derek Holzer wrote: Hello Meino, please read the Generating Waveforms chapter again: http://en.flossmanuals.net/PureData/GeneratingWavefo

[PD] PD extended on PPC

2010-03-03 Thread alan brooker
Hi Is there continuing support for PD on osx PPC? I dont think I see anything in the nightly builds? Thanks confirming! ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

[PD] pix_snap question

2010-03-03 Thread info
Hello! I have a short question about pix_snap: When using [pix_snap] to record a video file of some manipulated geos, everythings fine, except, that the videofile is flipped upside down and has wrong colors. Has anyone a solution for that or can tell me the reason for that? Thx, peter _

[PD] gem and gmerlin on Ubuntu

2010-03-03 Thread Martin Eckart
I've been struggling for the past few hours with ffmpeg trying to create an video file that Gem will accept that contains an alpha channel from a series of tiff images. While searching for answers I found some messages that mention that new versions of Gem are using gmerlin as an a/v decoder which

[PD] diff frame from previous frame with Gem

2010-03-03 Thread Hans-Christoph Steiner
I am trying to make a simple patch where the current video frame is [pix_diff]'ed against the previous video frame. I can get it going manually, but I would like it to happen every frame. I think I got close, but did manage to create a bizarre effect: framechangetracking.pd Description:

Re: [PD] PD extended on PPC

2010-03-03 Thread Hans-Christoph Steiner
Yes, that's the plan. The PPC build server croaked. I have "new" hardware for it, but its a matter of finding the time to rebuild it. .hc On Mar 3, 2010, at 3:48 PM, alan brooker wrote: Hi Is there continuing support for PD on osx PPC? I dont think I see anything in the nightly builds?

Re: [PD] diff frame from previous frame with Gem

2010-03-03 Thread gr()und
Hi, > I think I got close, but did manage to create a bizarre effect: I got just a white frame. I think you should cycle the placement of the frames in the buffer (so you always keep the last and new one) as well as first send bang then anything to the pix_film .. (Sorry for my lumberjack) patch

[PD] Variable CPU?

2010-03-03 Thread Thibault Walter
Hello I made a little discovery. It works with pd-extended and with pd-vanilla+GEM. Il have a MacBook Pro 2.66 GHz Intel Core 2 duo, with Mac-OS X 10.5.8. When I open one of my video-patch (it works with any one of my video or sound patchs), if I look at the CPU utilisation, I get something like

Re: [PD] diff frame from previous frame with Gem

2010-03-03 Thread palmieri, ricardo
wow! amazing patch/idea! im creating a new performance with dancers, and this patche looks super-conceptual! it only captures the moviment! wow! maybe im a bit stuned ;). but im just expressing my feeling about your idea hans! cheers guys! ps: take a look at this video: http://www.youtube.com/

Re: [PD] diff frame from previous frame with Gem

2010-03-03 Thread B. Bogart
I don't have a PD here with me. Why did you not use pix_motion? .b. Hans-Christoph Steiner wrote: I am trying to make a simple patch where the current video frame is [pix_diff]'ed against the previous video frame. I can get it going manually, but I would like it to happen every frame. I t

Re: [PD] diff frame from previous frame with Gem

2010-03-03 Thread Jack
Is it what you are looking for ? ++ Jack Le mercredi 03 mars 2010 à 17:39 -0500, Hans-Christoph Steiner a écrit : > I am trying to make a simple patch where the current video frame is > [pix_diff]'ed against the previous video frame. I can get it going > manually, but I would like it to ha

Re: [PD] A better pitch shifter?

2010-03-03 Thread colet . patrice
Hello,) yeah, an abs that receive the pitch shifting amount for processing each harmonics of sigmund~ outlet and give each result to oscillators. The design of polypoly~ abstraction would fit, something like [adc~]--[sigmund~ -npeak 10 peaks]--[partialShift~ 10]--//--[dac~] - Mail Original

Re: [PD] A better pitch shifter?

2010-03-03 Thread colet . patrice
It might be possible to start from attached patch - Mail Original - De: "colet patrice" À: "Pierre Massat" Cc: "pd-list" Envoyé: Jeudi 4 Mars 2010 05h35:26 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne Objet: Re: [PD] A better pitch shifter? Hello,) yeah, an ab

Re: [PD] A better pitch shifter?

2010-03-03 Thread colet . patrice
there was something missing for connecting all osc~ instances, it's fixed in attached one - Mail Original - De: "colet patrice" À: "Pierre Massat" Cc: "pd-list" Envoyé: Jeudi 4 Mars 2010 06h37:06 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne Objet: Re: [PD] A b