Re: [PD] Piano roll sequence display

2018-04-30 Thread Roman Haefeli
On Mon, 2018-04-30 at 11:20 -0400, William Brent wrote: > Has anyone done something like this using [struct]/[polygon], even > just for sequence display purposes and not editable via mouse > clicking/dragging? I did a quick search of the archives but haven't > found anything. There is unstep[1]

Re: [PD] feature request: system clipboard

2018-04-30 Thread Alexandre Torres Porres
hi, I can see this being request at least from over 10 years ago multiple times :) - see https://lists.puredata.info/pipermail/pd-list/2007-12/057132.html and also: https://sourceforge.net/p/pure-data/bugs/1273/ like I mentioned in the bug report/feature request above, this is also something I

[PD] feature request: system clipboard

2018-04-30 Thread Max
I'd like to be able to copy parts of patches in between instances of Pd. Currently copy and paste only works within one Pd instance. m. ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

Re: [PD] Piano roll sequence display

2018-04-30 Thread João Pais
From a long-time project I'm working on, here is a "screen capture" of a complete classical piece converted directly from midi, around 1h of music, 33548 notes/structs. The way it is made, I will update the midi anytime, and update the pd patch when necessary. Could also be editable via

Re: [PD] Piano roll sequence display

2018-04-30 Thread José Rafael Subía Valdez
Here is one, is this is what you mean..., https://github.com/XRoemer/puredata/tree/master/new_sequencer this version is en html, but it was initially developed with pd's data structures. It worked very well, but used some Purr Data objects to draw, which makes it easier, but not impossible On

Re: [PD] Piano roll sequence display

2018-04-30 Thread Miller Puckette
There's an extremely crude one in "dodge-song" in the Pd repertory project. I'm sure there are much better ones running around on the net. cheers Miller On Mon, Apr 30, 2018 at 11:20:32AM -0400, William Brent wrote: > Has anyone done something like this using [struct]/[polygon], even just for >

[PD] Piano roll sequence display

2018-04-30 Thread William Brent
Has anyone done something like this using [struct]/[polygon], even just for sequence display purposes and not editable via mouse clicking/dragging? I did a quick search of the archives but haven't found anything. -- William Brent www.williambrent.com “Great minds flock together” Conflations:

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread João Pais
I'm not sure: if I use the amplitudes 1 0.5 0.25, the peak amplitude is 1, and the wave is clearly outside of the 1/-1 boundaries. then you are doing something wrong. why do you think the maximum of abs(sin(t)+½sin(2t)+¼sin(4t)) is "1"? to analytically get the maxima of this function, you

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread William Brent
Maybe I'm misunderstanding what you're asking, but if the waveform is visually outside of the +1/-1 table bounds, the peak amplitude has to be greater than 1.0 too. Peak amplitude is the maximum of the absolute value of a waveform...max(abs(x)). When I run sinesum 512 1 0.5 0.25; I get a peak

Re: [PD] Display image inside graph-on-parent window?

2018-04-30 Thread oliver
William Huston wrote: Is there a way to display an image inside graph-on-parent window? Is there a way to display an arbitrary image of common filetypes (gif, jpeg, png, tif) on a canvas? I've checked the list archives. I tried [image] but couldn't get it to work. here's my approach at

Re: [PD] Display image inside graph-on-parent window?

2018-04-30 Thread Peter P.
* William Huston [2018-04-30 13:07]: > Is there a way to display an image inside graph-on-parent window? Have you tried iem_image from the iemgui library? ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and

[PD] Display image inside graph-on-parent window?

2018-04-30 Thread William Huston
Is there a way to display an image inside graph-on-parent window? Is there a way to display an arbitrary image of common filetypes (gif, jpeg, png, tif) on a canvas? I've checked the list archives. I tried [image] but couldn't get it to work. I can't seem to type a Windows-MSDOS style pathname

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread IOhannes m zmoelnig
On 2018-04-30 10:25, João Pais wrote: > Hi William, > > >> Hi Joao, you need to find the peak amplitude, max(abs(x)), and divide >> all samples by that. > > I'm not sure: if I use the amplitudes 1 0.5 0.25, the peak amplitude is > 1, and the wave is clearly outside of the 1/-1 boundaries. then

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread João Pais
Hi William, Hi Joao, you need to find the peak amplitude, max(abs(x)), and divide all samples by that. I'm not sure: if I use the amplitudes 1 0.5 0.25, the peak amplitude is 1, and the wave is clearly outside of the 1/-1 boundaries. Basically what I'm trying to do is to find out what

Re: [PD] Normaliizing sinus mix

2018-04-30 Thread Peter P.
* João Pais [2018-04-30 01:54]: > Hello list, > > I was curious about the following math issue: when defining a waveform using > "sinesum 0.8 0.2 0.1", what would be the formula to normalize the wave to 1? > I tried adding all the values (=1.1 in this case), getting the