Re: [PD] A strange question (yet again)

2022-01-22 Thread Raphael Isdant
For a really usable colored spectogram Gui, one solution would be to make an external with the Cicm wrapper lib: "A C/TK library that aims to facilitate the creation of objects for Pure Data". https://github.com/CICM/CicmWrapper You can see how nice Gui's they achieved in the CEAMMC lib for pd:

Re: [PD] A strange question (yet again)

2022-01-22 Thread Pierre Alexandre Tremblay
Indeed I noticed that. I was hoping the IEM magic link was containing a first simple GUI Well, I know what I’ll do in my free time… I’ll think of something and will look at the various versions of Max GUI writing tutorial, so I can translate a road-tested structure. > On 21 Jan 2022, at

Re: [PD] A strange question (yet again)

2022-01-21 Thread Christof Ressi
http://iem.kug.ac.at/pd/externals-HOWTO Here it is: https://github.com/pure-data/externals-howto However, this guide does not cover GUI plugins. On 21.01.2022 21:44, Pierre Alexandre Tremblay wrote: I was referring to this http://iem.kug.ac.at/pd/externals-HOWTO Which was referred to in a

Re: [PD] A strange question (yet again)

2022-01-21 Thread Christof Ressi
Disadvantage is that gem has to be downloaded and installed (or you pack it with your externals) More importantly: Gem runs on the audio thread. It is rarely a good idea to run Gem and do audio processing in the same Pd instance. ___

Re: [PD] A strange question (yet again)

2022-01-21 Thread João Pais
some ideas: - try to reduce the quantity of elements so that it's manageable, but this isn't that well as it reduces the quality as well - a extra problem with this is that if you want to add arrays such as with multiarray, you'll need to do all that in a gop - and that adds processing

Re: [PD] A strange question (yet again)

2022-01-21 Thread Pierre Alexandre Tremblay
I was referring to this http://iem.kug.ac.at/pd/externals-HOWTO Which was referred to in a post in puredata.org > > On 21 Jan 2022, at 19:44, ub wrote: > > probably the link to the svn repo on sourceforge, at the end of this page: > https://puredata.info/docs/guiplugins/SimpleExamples/ >

Re: [PD] A strange question (yet again)

2022-01-21 Thread ub
probably the link to the svn repo on sourceforge, at the end of this page: https://puredata.info/docs/guiplugins/SimpleExamples/ i was wondering about that some time ago too. cheers, ub On 21.01.22 20:36, IOhannes m zmölnig wrote: Am 21. Jänner 2022 15:40:48 MEZ schrieb Pierre Alexandre

Re: [PD] A strange question (yet again)

2022-01-21 Thread IOhannes m zmölnig
Am 21. Jänner 2022 15:40:48 MEZ schrieb Pierre Alexandre Tremblay : > the IEM link is dead which link is dead? and where do you find that link? mfg.sfg.jfd IOhannes ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

Re: [PD] A strange question (yet again)

2022-01-21 Thread Alexandre Torres Porres
Em sex., 21 de jan. de 2022 às 12:18, Alexandre Torres Porres < por...@gmail.com> escreveu: > [multislider] > oops, [else/multi.vsl] ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

Re: [PD] A strange question (yet again)

2022-01-21 Thread Alexandre Torres Porres
I guess the pd list address got accidentally left out? Putting it back... Em sex., 21 de jan. de 2022 às 11:58, Christof Ressi escreveu: > Alex has written several GUI externals. I think he can give you some > pointers or link to some examples that might be more relevant for what > you want to

Re: [PD] A strange question (yet again)

2022-01-21 Thread Pierre Alexandre Tremblay
Indeed I think that I will have to do an external… I wonder if there is a good (simple) how-to on GUI external for Pd that are cross platform and canvas compatible… the IEM link is dead and the example code you propose is long (i.e. 1k lines long :) - I only need to take in lists and draw a

Re: [PD] A strange question (yet again)

2022-01-21 Thread Christof Ressi
Unfortunately, Pd's GUI capabilities are rather limited. There's probably no way around writing your own Tcl/Tk code. Here's an advanced example from the "else" library: https://github.com/porres/pd-else/blob/master/Classes/Source/keyboard.c. Generally, it would be better to add a GUI

Re: [PD] A strange question (yet again)

2022-01-21 Thread Pierre Alexandre Tremblay
Ok lovely people. I cleaned it, and I even did a similar thing to João’s 'dynamic patching' to see if it would be faster. In my case, it is unusably slow for 300x400 for the struct version, and it beachballs completely with the ‘dynamic patching’ approach. Even more funny is, if you save the

Re: [PD] A strange question (yet again)

2022-01-20 Thread João Pais
- if the spectrogram + audio aren't triggered that often, one way would be to use a background of canvas objects, each with 1x1 pixels. This sounds very exotic, I did it in jmmmp/pix2canvas to "copy-paste" pictures into a Pd patch. I was trying to do a x-y joystick that way when I did it, so

Re: [PD] A strange question (yet again)

2022-01-20 Thread Pierre Alexandre Tremblay
> Do you have a Pd patch somewhere to have a look at? I’ll tidy up what I have but it is exactly this: > - if the spectrogram + audio aren't triggered that often, one way would be to > use a background of canvas objects, each with 1x1 pixels. This sounds very > exotic, I did it in

Re: [PD] A strange question (yet again)

2022-01-20 Thread João Pais
An array of data structure rectangles doesn't sound that bad. Why are you looking for another way? Because if I have a spectrogram of 400 pixels by 200 pixels, the struct drawing was taxing the machine quite a lot. Actually 100 smaller than that it was taxing the machine… But maybe I got

Re: [PD] A strange question (yet again)

2022-01-20 Thread Pierre Alexandre Tremblay
off to save > CPU. > > https://github.com/danomatika/rc-patches/tree/master/rc > >> On Jan 20, 2022, at 6:01 PM, pd-list-requ...@lists.iem.at wrote: >> >> Date: Thu, 20 Jan 2022 16:46:02 + >> From: Pierre Alexandre Tremblay >> To: Pd-List >> Su

Re: [PD] A strange question (yet again)

2022-01-20 Thread Lucas Cordiviola
On 1/20/2022 5:17 PM, Pierre Alexandre Tremblay wrote: Btw I don’t know if my previous reply with picture attachements made it to the list Yes it did. at least i could see them. -- Mensaje telepatico asistido por maquinas. ___

Re: [PD] A strange question (yet again)

2022-01-20 Thread Pierre Alexandre Tremblay
qu...@lists.iem.at wrote: >> >> Date: Thu, 20 Jan 2022 16:46:02 + >> From: Pierre Alexandre Tremblay >> To: Pd-List >> Subject: [PD] A strange question (yet again) >> Message-ID: <12f096c2-a42d-42ba-8146-b784978f6...@gmail.com> >> Content-Type: t

Re: [PD] A strange question (yet again)

2022-01-20 Thread Dan Wilcox
iem.at>> > Subject: [PD] A strange question (yet again) > Message-ID: <12f096c2-a42d-42ba-8146-b784978f6...@gmail.com > <mailto:12f096c2-a42d-42ba-8146-b784978f6...@gmail.com>> > Content-Type: text/plain; charset="utf-8" > > Sorry again for my obsessions

Re: [PD] A strange question (yet again)

2022-01-20 Thread Roman Haefeli
On Thu, 2022-01-20 at 16:46 +, Pierre Alexandre Tremblay wrote: > Sorry again for my obsessions with pd-vanilla which makes everything > harder - this one might be impossible! > > I’m trying to draw a spectrogram in pd-vanilla to match our waveform > visualisation options in FluCoMa for Max

[PD] A strange question (yet again)

2022-01-20 Thread Pierre Alexandre Tremblay
Sorry again for my obsessions with pd-vanilla which makes everything harder - this one might be impossible! I’m trying to draw a spectrogram in pd-vanilla to match our waveform visualisation options in FluCoMa for Max and SuperCollider. I saw the example with the peaks in the documentation,