Re: [PD] uDMX hanging/locking up

2016-06-14 Thread cyrille henry
Le 14/06/2016 01:41, Lucas Cordiviola a écrit : Ok, well as I mention earlier I have little exp on DMX. Probably is the unit, test it with some DMX software, also Firmware? Later. Also Matthias had mention OLA. https://github.com/kronihias/ola2pd Ola can also receive OSC message, so you don

[PD] biquad and karplus-strong

2016-06-14 Thread Peter P.
Hi list, I am trying to implement Karplus-Strong and am wondering about the following questions: - I run the feedback-delay inside a subpatch that is re[block~ 1]ed to 1 sample blocksize. Will a biquad~ object work correctly with blocksizes of 1 as well? - The Karplus-Strong paper recommends a s

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Orm Finnendahl
Hi Peter, Am Dienstag, den 14. Juni 2016 um 10:51:16 Uhr (+0200) schrieb Peter P.: > Hi list, > > I am trying to implement Karplus-Strong and am wondering about the > following questions: not an answer to your question, but here is an implementation of Karplus Strong: http://www.pd-tutorial.co

Re: [PD] open vst in pd in all OS

2016-06-14 Thread Simon Iten
the situation is as follows: linux vst is native on linux of course, but that does not mean that windows or osx vst’s will run on linux. you have to compile them for linux. there are some commercial plugins popping up for linux, and they are often linuxvst. opensource plugins are still mostly l

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Orm Finnendahl
Hi Peter, BTW: The patch in the pd tutorial uses [z~ 1] which you can replace with [biquad~ 0 0 0 1 0] and your suggestion to do the averaging in the biquad~ should simplify that patch even more. The probability based polarity change could be done using the attached patch. -- Orm Am Dienstag,

Re: [PD] uDMX hanging/locking up

2016-06-14 Thread jamal crawford
> Probably is the unit, test it with some DMX software, also > Firmware? Later. qlcplus supports uDMX (anyma) ~/.jc ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Peter P.
Dear Orm, * Orm Finnendahl [2016-06-14 12:24]: > Hi Peter, > > BTW: The patch in the pd tutorial uses [z~ 1] which you can replace > with [biquad~ 0 0 0 1 0] and your suggestion to do the averaging in > the biquad~ should simplify that patch even more. > > The probability based polarity change

Re: [PD] [PD-dev] problem with PA and Jack on OS X

2016-06-14 Thread IOhannes m zmoelnig
On 2016-06-14 12:57, Marco Matteo Markidis wrote: > Dear list, > > Sunday I had a gig in Poland. After connect all cables, mixer and sound > card I started my Pd patch without problems. When I switched on the DSP Pd > frozen and I didn't understand really what happens. After a while, I > started t

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Orm Finnendahl
Hi Peter, Am Dienstag, den 14. Juni 2016 um 15:05:57 Uhr (+0200) schrieb Peter P.: > Thank you! This is quite elegant, vanilla Pd and works with a blocksize > of 1 as well! Did you come up with this or is there another source which > can be credited? The polarity was done from scratch today. The

Re: [PD] [PD-dev] problem with PA and Jack on OS X

2016-06-14 Thread Marco Matteo Markidis
> > so what was the error message? I start Jack from JackPilot on OS X, and Jack fails to start, not Pd fails to connect to Jack. > so when using Pd with jackd: > - start jackd (e.g. using qjackctl) > - then start Pd Yes I did it properly. > it seems like you are using the "PA" acronym for diff

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Jesse Mejia
I haven't heard of decay stretching in KS - I'm interested in this - where is info on that? > On Jun 14, 2016, at 6:38 AM, Orm Finnendahl > wrote: > > Hi Peter, > >> Am Dienstag, den 14. Juni 2016 um 15:05:57 Uhr (+0200) schrieb Peter P.: >> Thank you! This is quite elegant, vanilla Pd and wo

[PD] Morse Code Translator / Decoder

2016-06-14 Thread me.grimm
Hello, Has anyone made a patch/abstraction to "decode" or translate morse code to text? I see text->morse but not the other way around thanks! m ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Alexandre Torres Porres
Hi Peter, I tried my best to do a faithful implementation of the Karplus Strong algorithm (with the probability function and all) as described in that paper. I have it in my didactic material that I use to teach my students - one thing though, I'm from Brazil and the thing is being developed in por

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Alexandre Torres Porres
Hey, I didn't send the new version in the attachment, that's the same as in my didactic material, here's the new version 2016-06-14 15:29 GMT-03:00 Alexandre Torres Porres : > Hi Peter, I tried my best to do a faithful implementation of the Karplus > Strong algorithm (with the probability functio

Re: [PD] biquad and karplus-strong

2016-06-14 Thread cyrille henry
hello, i've just read the original article from 1983 describing KS algo, including decay stretching. as far as i understand, averaging the last 2 sample is a very optimized low pass iir filter at fixed frequency. the decay stretching allow to change the filter cutoff. now that processing power

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Alexandre Torres Porres
2016-06-14 17:40 GMT-03:00 cyrille henry : > now that processing power allow to easily compute filter at different > frequency, I would suggest to replace the averaging algo with a simple lop~ > filter and experiment with the cutoff frequency. > yep, that's what I was trying to say ;) cheers ___

Re: [PD] biquad and karplus-strong

2016-06-14 Thread cyrille henry
Le 14/06/2016 23:27, Alexandre Torres Porres a écrit : 2016-06-14 17:40 GMT-03:00 cyrille henry mailto:c...@chnry.net>>: now that processing power allow to easily compute filter at different frequency, I would suggest to replace the averaging algo with a simple lop~ filter and experiment

Re: [PD] biquad and karplus-strong

2016-06-14 Thread Alexandre Torres Porres
you said it better anyhow, haha 2016-06-14 18:35 GMT-03:00 cyrille henry : > > > Le 14/06/2016 23:27, Alexandre Torres Porres a écrit : > >> 2016-06-14 17:40 GMT-03:00 cyrille henry > c...@chnry.net>>: >> >> now that processing power allow to easily compute filter at different >> frequency, I

Re: [PD] open vst in pd in all OS

2016-06-14 Thread Alexandre Torres Porres
so, someone was telling me about an alleged issue, as follows: "with a GUI that depends in GUI libraries as Qt, GTK or JUCE, there's no garanties I'll have these libraries so it may be impossible for PD to open such libraries (...) QTractor, for instance, runs well plugins based in Qt but is terri

Re: [PD] deken install user experience

2016-06-14 Thread Miller Puckette
It's working for me. I've taken teh liberty of adding an "OK/cancel" confirnation that prints where the thing will get installed. (This is default behavior of apt-get, etc. so it's not too nutty of me to think this is a reasonable step. It's much less invasive than throwing the file chooser up a

Re: [PD] deken install user experience

2016-06-14 Thread Alexandre Torres Porres
btw, roughly when could we see a 0.47-1 update? cheers 2016-06-14 21:32 GMT-03:00 Miller Puckette : > It's working for me. I've taken teh liberty of adding an "OK/cancel" > confirnation that prints where the thing will get installed. (This is > default behavior of apt-get, etc. so it's not too

Re: [PD] deken install user experience

2016-06-14 Thread Miller Puckette
I'm just trying to fix a bug or two... but who knows how long that might take. cheers M On Tue, Jun 14, 2016 at 09:42:19PM -0300, Alexandre Torres Porres wrote: > btw, roughly when could we see a 0.47-1 update? > > cheers > > 2016-06-14 21:32 GMT-03:00 Miller Puckette : > > > It's working for