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] 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] 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] 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] 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] using PD/GEM to generate timecode overlay

2011-11-02 Thread Hans-Christoph Steiner
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 [zexy/list2symbol :] .hc On Nov 2, 2011, at 9:45 PM, Mikael