Re: [PD] symbol2list leading zero

2011-11-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-02 18:06, rolf meesters wrote: hi, i'm using [symbol2list -] | |[symbol( || | [list2symbol] on something like 00-ab-87-02. the result becomes 0ab872. so, i'm losing the leading zero's. in other words the symbol

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 03:14, Hans-Christoph Steiner wrote: You need to generate a symbol, then Pd won't strip the zeros off. You can do that with: [makefilename %02d] though for SSS you would need [makefilename %03d] That will give you just hh.

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread Mikael.Fernstrom
Thanks! Works perfect. Next, I'm adding an Arduino to interface the projector. /Mikael Sent from my iPad On 3 Nov 2011, at 08:26, IOhannes m zmoelnig zmoel...@iem.at wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 03:14, Hans-Christoph Steiner wrote: You need to

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread katja
On Thu, Nov 3, 2011 at 1:30 AM, Jonathan Wilkes jancs...@yahoo.com wrote: How does the cpu usage in my demo compare to your patch where you use a radiobutton? Here's a cpu load comparison of objects dragged continuously (on intel mac 2GHz): polygon in movable_box2.pd: 23 % polygon in

Re: [PD] symbol2list leading zero

2011-11-03 Thread rolf meesters
On Wed, Nov 2, 2011 at 7:28 PM, Hans-Christoph Steiner h...@at.or.atwrote: As long as its a float, it'll be converted to the simplest form. So 0 is the simplest form of 00. The same would happen with 0.. So if you need 00 in a symbol, you'll need generate it by some other method

Re: [PD] pduino test patch: old analog/digital controls

2011-11-03 Thread olsen
yo bonitos due to the pduino rewrite I've to reanimate this threat ;) I would like to remove the ambiguity and confusion about this old and new way of enabling the analog pins. old way of enabling the analog 0 pin is sending the following to the arduino object: [analogIns 0 1( enabling the

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread David Schaffer
Hi, This might just be a graphics related problem. Just disable the graphical representation of the arrays (I'm not in front of Pd right now but If I remeber well, it's just a matter of clicking on the arrays and unchecking the graph on parent box). I had the very same problem under Win

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Ingo
This might just be a graphics related problem. It's not! Ingo Von: pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] Im Auftrag von David Schaffer Gesendet: Donnerstag, 3. November 2011 12:31 An: pd list Betreff: Re: [PD] Interruption of audio /

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: katja katjavet...@gmail.com To: pd-list@iem.at Cc: Sent: Thursday, November 3, 2011 6:10 AM Subject: Re: [PD] how to capture window-related mouse-events when toxy is discontinued? On Thu, Nov 3, 2011 at 1:30 AM, Jonathan Wilkes jancs...@yahoo.com

Re: [PD] symbol2list leading zero

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: IOhannes m zmoelnig zmoel...@iem.at To: pd-list@iem.at Cc: Sent: Thursday, November 3, 2011 4:20 AM Subject: Re: [PD] symbol2list leading zero -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-02 18:06, rolf meesters wrote: hi, i'm

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread João Pais
those spikes is what I was predicting with the graphic overloading of tcl/tk (through data structures, in this case). you could also try the following: make the selectable area around one corner (or middle) of the button: with a tiny bit more resolution, but less points in the template. if

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread Hans-Christoph Steiner
On Nov 3, 2011, at 4:24 AM, IOhannes m zmoelnig wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 03:14, Hans-Christoph Steiner wrote: You need to generate a symbol, then Pd won't strip the zeros off. You can do that with: [makefilename %02d] though for SSS

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-02 à 22:14:00, Hans-Christoph Steiner a écrit : You need to generate a symbol, then Pd won't strip the zeros off. You can do that with: [makefilename %02d] That will give you just hh. You could do one of those per hh mm ss SSS, then combine them into a list and feed it thru

Re: [PD] pduino test patch: old analog/digital controls

2011-11-03 Thread Hans-Christoph Steiner
That confusion originates from the Arduino numbering scheme itself, since it uses A0 for analog pins in analog mode, but then it uses a number when using the same pin for digital things. I think one way to represent this might be to allow the use of A0-A7 pin names in addition to the numbers,

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 15:32, Hans-Christoph Steiner wrote: [symbol $1:$2:$3.$4( will give you hh:mm:ss.SSS Except where $1 is 01, for example, it'll give you 1:34:45.345 no. my suggestion was to use the msgbox instead of [list2symbol :], not for the

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 15:37, Mathieu Bouchard wrote: Le 2011-11-02 à 22:14:00, Hans-Christoph Steiner a écrit : [text2d] could be modified to also accept lists of ascii codes. In that alas, it cannot, as it already has this functionality. the [text*]

Re: [PD] symbol2list leading zero

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 09:20:00, IOhannes m zmoelnig a écrit : On 2011-11-02 18:06, rolf meesters wrote: would it then be necessary, working with texts, always to check if one's not accidentally losing zero's? btw, you are not losing any zeros. whether your pay cheque says 100,-€ or

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 15:43:00, IOhannes m zmoelnig a écrit : On 2011-11-03 15:37, Mathieu Bouchard wrote: Le 2011-11-02 à 22:14:00, Hans-Christoph Steiner a écrit : [text2d] could be modified to also accept lists of ascii codes. In that alas, it cannot, as it already has this functionality. :)

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-11-03 15:59, Mathieu Bouchard wrote: Le 2011-11-03 à 15:43:00, IOhannes m zmoelnig a écrit : On 2011-11-03 15:37, Mathieu Bouchard wrote: Le 2011-11-02 à 22:14:00, Hans-Christoph Steiner a écrit : [text2d] could be modified to also

Re: [PD] symbol2list leading zero

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: Mathieu Bouchard ma...@artengine.ca To: IOhannes m zmoelnig zmoel...@iem.at Cc: pd-list@iem.at Sent: Thursday, November 3, 2011 10:51 AM Subject: Re: [PD] symbol2list leading zero Le 2011-11-03 à 09:20:00, IOhannes m zmoelnig a écrit : On 2011-11-02

[PD] CUBEmixer documentation and binaural ambisonics

2011-11-03 Thread oscar pablo di liscia
Hello list. I have two related questions. I wonder if somebody know if there is an english translation of the CUBEmixer documentation. Also, a couple of years ago I tried and liked very much an IEM package called bin-ambi or something similar (to make binaural ambisonics), but I can´t find it now.

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Hans-Christoph Steiner
I doubt that Tcl/Tk's drawing code is being overloaded. Instead, try running path/to/pd -stderr -d 3 and you'll see that 'pd' is sending 'pd-gui' massive amounts of Tcl code to parse, compile, and execute. In the case of a move, this could be accomplished with one line of Tcl to tag

Re: [PD] very compressed chip sounds

2011-11-03 Thread Mathieu Bouchard
Le 2011-10-14 à 17:39:00, martin brinkmann a écrit : improved version of my 1st one (got rid of the lame random), another feedback-based, and a fm-tuningfork with echo. I like the stereo of mnb_mininoise1a.pd and I also like how mnb_mininoise3quak.pd seems to be making chord-like and

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Jonathan Wilkes
I believe Ivica made such a modification in Pd-l2ork-- whatever the case, moving many iemguis in Pd-l2ork is much snappier than in Vanilla or Pd-extended.  But I haven't measured the cpu load. -Jonathan - Original Message - From: Hans-Christoph Steiner h...@at.or.at To: João Pais

Re: [PD] using PD/GEM to generate timecode overlay

2011-11-03 Thread Phil Stone
On 11/3/11 7:37 AM, Mathieu Bouchard wrote: Symbols are never freed, so, it's better to use several separate [text2d] to reduce the total number of symbols created. Otherwise, as tens of thousands of symbols are created, not only it takes RAM, but it also slows down the symbol table (this

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Ivica Ico Bukvic
Indeed, pd-l2ork moves entire selection by tag, so instead of redrawing everything, out issues single tcl/tk command. The only thing that still redrawed every time when displaced is gop-enabled patcher. Ivica Ico Bukvic, D.M.A Composition, Music Technology Director, DISIS Interactive Sound

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Hans-Christoph Steiner
Hey Ico, That's great, we need to do a lot more of that. Can you point me to where these changes are so I can check them out? .hc On Nov 3, 2011, at 2:44 PM, Ivica Ico Bukvic wrote: Indeed, pd-l2ork moves entire selection by tag, so instead of redrawing everything, out issues single

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Charles Goyard
Ingo wrote: This might just be a graphics related problem. It's not! it's more related to pd being monothreaded. It forces you to do the hard scheduling work. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Hans-Christoph Steiner
On Nov 3, 2011, at 3:16 PM, Charles Goyard wrote: Ingo wrote: This might just be a graphics related problem. It's not! it's more related to pd being monothreaded. It forces you to do the hard scheduling work. Threading is not the only way to do concurrency. Think of all of those objects

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 15:32:00, Hans-Christoph Steiner a écrit : Threading is not the only way to do concurrency. Think of all of those objects in your patch, they are all running in parallel. And you had to do nothing to make sure that they run in parallel, don't block each other, sync up, etc.

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Hans-Christoph Steiner
On Nov 3, 2011, at 3:44 PM, Mathieu Bouchard wrote: Le 2011-11-03 à 15:32:00, Hans-Christoph Steiner a écrit : Threading is not the only way to do concurrency. Think of all of those objects in your patch, they are all running in parallel. And you had to do nothing to make sure that

[PD] soundfiler is slow; readsf~ no filelength

2011-11-03 Thread Samuel Burt
How do I get the length of an aif file without using soundfiler? I've got an application that loads random aif and wav files from a chosen directory when triggered. I was using soundfiler to load a sound into an array where I could play it back with variable speed. When I ran two of these

Re: [PD] symbol2list leading zero

2011-11-03 Thread Roman Haefeli
On Thu, 2011-11-03 at 10:51 -0400, Mathieu Bouchard wrote: Le 2011-11-03 à 09:20:00, IOhannes m zmoelnig a écrit : On 2011-11-02 18:06, rolf meesters wrote: would it then be necessary, working with texts, always to check if one's not accidentally losing zero's? btw, you are not losing

Re: [PD] symbol2list leading zero

2011-11-03 Thread Roman Haefeli
On Thu, 2011-11-03 at 08:33 -0700, Jonathan Wilkes wrote: From: Mathieu Bouchard ma...@artengine.ca If someone just wants to split lists instead of converting to floats and getting weird answers on pd-list, there's [gf/s2l], which does not do anything else than splitting (as it is

Re: [PD] symbol2list leading zero

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: Roman Haefeli reduz...@gmail.com To: pd-list@iem.at Cc: Sent: Thursday, November 3, 2011 4:36 PM Subject: Re: [PD] symbol2list leading zero On Thu, 2011-11-03 at 08:33 -0700, Jonathan Wilkes wrote: From: Mathieu Bouchard ma...@artengine.ca If

Re: [PD] symbol2list leading zero

2011-11-03 Thread Roman Haefeli
On Thu, 2011-11-03 at 13:43 -0700, Jonathan Wilkes wrote: - Original Message - From: Roman Haefeli reduz...@gmail.com To: pd-list@iem.at Cc: Sent: Thursday, November 3, 2011 4:36 PM Subject: Re: [PD] symbol2list leading zero On Thu, 2011-11-03 at 08:33 -0700, Jonathan

Re: [PD] soundfiler is slow; readsf~ no filelength

2011-11-03 Thread Hans-Christoph Steiner
I think there is iemlib/soundfile_info. .hc On Nov 3, 2011, at 4:07 PM, Samuel Burt wrote: How do I get the length of an aif file without using soundfiler? I've got an application that loads random aif and wav files from a chosen directory when triggered. I was using soundfiler to load a

Re: [PD] CUBEmixer documentation and binaural ambisonics

2011-11-03 Thread Peter Plessas
* oscar pablo di liscia odilis...@gmail.com [2011-11-03 16:40]: Hello list. I have two related questions. I wonder if somebody know if there is an english translation of the CUBEmixer documentation. did you already see this ressource:

Re: [PD] Interruption of audio / Loading sound into array

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 15:52:00, Hans-Christoph Steiner a écrit : On Nov 3, 2011, at 3:44 PM, Mathieu Bouchard wrote: Le 2011-11-03 à 15:32:00, Hans-Christoph Steiner a écrit : Threading is not the only way to do concurrency. Think of all of those objects in your patch, they are all running in

Re: [PD] symbol2list leading zero

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 21:09:00, Roman Haefeli a écrit : And it does not make so much sense to compare Pd/Max to anything outside of Pd/Max. Why ? __ | Mathieu BOUCHARD - téléphone : +1.514.383.3801 - Montréal,

[PD] Fwd: Re: how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Ivica Ico Bukvic
Forgot to copy the list... Ivica Ico Bukvic, D.M.A Composition, Music Technology Director, DISIS Interactive Sound Intermedia Studio Director, L2Ork Linux Laptop Orchestra Assistant Director, CCTAD Virginia Tech Department of Music Blacksburg, VA 24061-0240 (540) 231-6139 (540) 231-5034 (fax)

Re: [PD] soundfiler is slow; readsf~ no filelength

2011-11-03 Thread Samuel Burt
Thanks, Hans, but iemlib/soundfile_info is also giving me the error. soundfile_info_read-error: /filepath/growl.oeoeoe.01.aif is no RIFF-WAVE-file Sam On Nov 3, 2011, at 4:57 , Hans-Christoph Steiner wrote: I think there is iemlib/soundfile_info. .hc On Nov 3, 2011, at 4:07 PM,

Re: [PD] symbol2list leading zero

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: Roman Haefeli reduz...@gmail.com To: pd-list@iem.at pd-list@iem.at Cc: Sent: Thursday, November 3, 2011 4:47 PM Subject: Re: [PD] symbol2list leading zero On Thu, 2011-11-03 at 13:43 -0700, Jonathan Wilkes wrote: - Original Message -

Re: [PD] expr alternative

2011-11-03 Thread Olivier B
2011/11/2 Jonathan Wilkes jancs...@yahoo.com From: Olivier B lamouraupeu...@gmail.com To: i go bananas hard@gmail.com Cc: PD-List pd-list@iem.at Sent: Wednesday, November 2, 2011 8:01 AM Subject: Re: [PD] expr alternative Hi list... Just to say

Re: [PD] soundfiler is slow; readsf~ no filelength

2011-11-03 Thread Marco Donnarumma
Hi Sam, In the helpfile of [soundfile_info] you can read that it only works with .wav file. The error message says you are trying to read an .aif M Thanks, Hans, but iemlib/soundfile_info is also giving me the error. soundfile_info_read-error: /filepath/growl.oeoeoe.01.aif is no

[PD] complete source code of pd-extended

2011-11-03 Thread Olivier Baudry
Dear all Is it possible to download all source code of pd_extended (like pd and all extras?) I get the source of pd with this : on terminal: I write git clone |git://pure-data.git.sourceforge.net/gitroot/pure-data/pure-data So It's only pd vanilla source, not all pd_extended source. |

Re: [PD] complete source code of pd-extended

2011-11-03 Thread Ricardo Fabbri
Hi. Start by reading this: http://puredata.info/docs/developer/WorkingWithPdExtendedSources Best, Ricardo Fabbri -- Linux registered user #175401 www.lems.brown.edu/~rfabbri labmacambira.sf.net On Thu, Nov 3, 2011 at 10:45 PM, Olivier Baudry olivierbaudry@hotmail.fr wrote: Dear all

Re: [PD] soundfiler is slow; readsf~ no filelength

2011-11-03 Thread Mathieu Bouchard
Le 2011-11-03 à 19:04:00, Samuel Burt a écrit : Thanks, Hans, but iemlib/soundfile_info is also giving me the error. soundfile_info_read-error: /filepath/growl.oeoeoe.01.aif is no RIFF-WAVE-file I made this patch (attached) that does it either the long way (for current releases of GridFlow)

Re: [PD] how to capture window-related mouse-events when toxy is discontinued?

2011-11-03 Thread Jonathan Wilkes
- Original Message - From: katja katjavet...@gmail.com To: pd-list@iem.at Cc: Sent: Wednesday, November 2, 2011 7:58 PM Subject: Re: [PD] how to capture window-related mouse-events when toxy is discontinued? On Wed, Nov 2, 2011 at 11:08 PM, Jonathan Wilkes jancs...@yahoo.com