Re: [PD] [UPDATED] can signal inlets that aren't the main inlet have float or message methods?

2016-07-14 Thread Matt Barber
Also, to be clear the effect will only take with dsp running, so it depends on the use case. You couldn't use this to pipe messages from the right inlet to an outlet (say) without dsp running, but most signal objects don't have that kind of behavior in the first place. On Thu, Jul 14, 2016 at

Re: [PD] w32 Deken package issues.

2016-07-14 Thread Thomas Mayer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi, On 13.07.2016 10:59, IOhannes m zmoelnig wrote: > On 2016-07-13 10:12, Lucas Cordiviola wrote: >> On 2016-07-12 09:41, IOhannes m zmoelnig wrote: >>> yes. that's the microsoft way to ship dependencies. >> >> Lets keep Microsoft out of this,

Re: [PD] [UPDATED] can signal inlets that aren't the main inlet have float or message methods?

2016-07-14 Thread Alexandre Torres Porres
> I found a way to simulate this behaviour I just wanna publicly thank you for being awesome :) > (only for floats, not for anythings) it works for most of cyclone issues... more than in scope~, this is really crucial for other 4 objects in cyclone (bitand~, bitor~, bitxor~, delay~ [as in

Re: [PD] 3D tabplay?

2016-07-14 Thread Alexandre Torres Porres
sounds a bit like the 2d.wave~ object from max and I wonder why it wasn't used... 2016-07-14 7:49 GMT-03:00 José Rafael Subía Valdez : > well.. it's like a table of tables, a matrix. and you address them by > "frames" instead of by simple index (I am being overly

[PD] [UPDATED] can signal inlets that aren't the main inlet have float or message methods?

2016-07-14 Thread Matt Barber
​Hello list, Back in March we had a discussion about getting signal ​inlets other than the main one to use floats as messages rather than signals. I found a way to simulate this behavior (only for floats, not for anythings). A little background: If you have a signal inlet, when you send a float

Re: [PD] w32 Deken package issues.

2016-07-14 Thread Lucas Cordiviola
Hi IOhannes, using the deken-search backend (as used by the plugin) and some awk/grepfoo, i created the attached list of deken packages for w32.fgamsdrIOhannes I have already checked 88 packages, around 9 of then needs more in deph analysis. Can you provide another txt with the rest of w32 pkgs

Re: [PD] w32 Deken package issues.

2016-07-14 Thread Lucas Cordiviola
Hi Roman, Can you test, if this works without having to downloadanother DLL? http://puredata.info/Members/rdz/software/osc-v0.2~git20151117-(Windows-i386-32)-externals.zip already tested, its ok, no extra .dll needed. Salutti,Lucarda Mensaje telepatico asistido por maquinas. From:

Re: [PD] 3D tabplay?

2016-07-14 Thread IOhannes m zmölnig
On 07/14/2016 12:49 PM, José Rafael Subía Valdez wrote: > well.. it's like a table of tables, a matrix. and you address them by > "frames" instead of by simple index assuming you have uniform tables (all tables of the same size) it is pretty easy to store the data in a single big table and

Re: [PD] 3D tabplay?

2016-07-14 Thread José Rafael Subía Valdez
well.. it's like a table of tables, a matrix. and you address them by "frames" instead of by simple index (I am being overly simplistic here so bare with me). jitter uses these to store video data, and what Charles did is to store audio data. I am no longer a max user too, I changed to PD 8 years

Re: [PD] 3D tabplay?

2016-07-14 Thread Derek Kwan
On Jul 14, José Rafael Subía Valdez wrote: > Hello List, > > I am trying to implement an FFT Spectral Freeze patch based on "A Tutorial > on Spectral Sound Processing Using Max/MSP and Jitter", Jean-Francois > Charles. In the project, Charles uses the jitter objects to solve this. > > I am