Re: [Faudiostream-users] Median filter

2022-01-09 Thread Alik Rustamoff
(a,b,c) = select3(s,b,a,c) >>> with { >>> cf(a,b) = 2*(a>> s=abs(cf(a,b)+2*cf(b,c)+3*cf(c,a))/2; >>> }; >>> >>> process = median3(1,2,3), median3(1,3,2), median3(2,1,3), >>> median3(2,3,1), median3(3,1,2), median3(3,2,1);

[Faudiostream-users] Median filter

2022-01-09 Thread Alik Rustamoff
What is the way to make a median filter in faust? ___ Faudiostream-users mailing list Faudiostream-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/faudiostream-users

[Faudiostream-users] Is there a way to load a component with faustide?

2021-11-15 Thread Alik Rustamoff
Hi! I installed faustide locally on my computer and it generally looks working nicely through chrome. But when I load a .dsp file with something like: somedspcode = component("/absolute/path/to/file.dsp"); faustide complains that it cannot find it, though the component file is on the same local

[Faudiostream-users] how to compile portable plugins

2021-06-20 Thread Alik Rustamoff
Hi! I usually compile plugins as lv2. And these only work on the machine they compiled on. I use faust2lv2 script How can I compile them so they portable (like online compiler does?) ___ Faudiostream-users mailing list

Re: [Faudiostream-users] noise from fi.highpass

2020-12-18 Thread Alik Rustamoff
Fri, Dec 18, 2020 at 9:10 PM Oleg Nesterov wrote: > Hi Dario, > > this motivated me to look at your library again ;) > > On 12/18, Alik Rustamoff wrote: > > > > Hi, Dario, I, btw, ended up using blti filter from your edge of chaos > > library. Good collection. No no

Re: [Faudiostream-users] noise from fi.highpass

2020-12-18 Thread Alik Rustamoff
* q1); > norm = 1 + alpha; > a0 = ((1 + cos(w(cf))) / 2) / norm; > a1 = -1 * (1 + cos(w(cf))) / norm; > a2 = ((1 + cos(w(cf))) / 2) / norm; > b1 = cos(w(cf)) * -2 / norm; > b2 = (1 - alpha) / norm; > w(f) = 2 * ma.PI * f / ma.SR; > biquad(a0, a1, a2, b1, b2, x) = fir : + > ~

[Faudiostream-users] noise from fi.highpass

2020-12-17 Thread Alik Rustamoff
Hi, when I use fi.highpass in the following example I get weird noise at the output if when offset parameters are not 0 and fighpass frequency is less than 70hz. Removing the highpass filter of raising cutoff freq removes the noise. Should it be like that? what is the reason? declare name