Ladder 4 Pole LP Filter
-
@Lindon said in Ladder 4 Pole LP Filter:
@DabDab said in Ladder 4 Pole LP Filter:
@DanH said in Ladder 4 Pole LP Filter:
Is this filter ok for modulating? I know some like the Moog create some horrible noise whilst being modulated, although both sound good here so far - I don't want some nasty outbursts later down the line!
Correction - NEVER MODULATE THE MOOG FILTER!!!!!!!!!!!!!!!!!!!!!!!!!
HISE Moog filter seems very weird and buggy to me. Sudden horrible noise gave me shock when I was not used to it.
The recommendation has been "dont use the Moog Filter, use the Ladder filter" for a few years now....
Moog Filter gives a rich analogue touch that Ladder Filter can't produce. But alas ! it is buggy.
-
@DabDab itโs a shame Moog filter fails. I love how it sounds. I looked into de C++ code but is far away from my understanding. I also tried faust moog filter but Hises sounds better. Hope @Christoph-Hart can fix that some day
-
@hisefilo Hmmm.. I also tried FAUST Moog. You are right HISE moog is better (y)
-
Iโm pretty happy with the sound of the 4pole LP โ when I tested it, I didnโt recognize thereโs a Moog LP to choose. So, judging by my ears, I already found a moogish filter
-
I think in general the filter selection could use a freshen up. @Lindon mentioned a while back that I'd need to find the code for new filters and then implement them into Hise.
So a) where does one find the code for filters, and b) how would you get them into Hise? (I'm assuming through SNEX).
-
@DanH - you'd probably need to do it with C++ there are several well respected books on filter design - google it.
Alternatively you could look at the filters in Faust.
-
@Lindon Thanks - another issue is being able to update / create new filter displays for the UI. Any ideas on that anyone? Aside from drawing it all in PR
-
@DabDab how do I get the Faust Moog? Can't see it on https://faustide.grame.fr/ but maybe I'm in the wrong place!
-
Possibly here: https://faustdoc.grame.fr/examples/filtering/#mooghalfladder and next ones.
-
@sletz Thank you! :)
-
@sletz said in Ladder 4 Pole LP Filter:
Possibly here: https://faustdoc.grame.fr/examples/filtering/#mooghalfladder and next ones.
@DanH here is an example
process = dm.moog_vcf_demo;
Click here to know more about moog faust library.
ve.moogLadder (4th Order)
Usage..
_ : moogLadder(normFreq,Q) : _
-
Ok finally trying the Faust Moog - It's mono lol... but has stereo in and out... Can make it work tho
-
@DanH ok no I can't
It only takes the left channel - is there a node I can use to get the right input channel and switch it over to the left input?!
-
@DanH I recommend spending 1-2 hours learning the absolute basics of Faust signal routing - turning a single channel processing module into a stereo module is super trivial if you now how it works. Just learn the basic operators and you should be able to do this (and many other simple things) yourself.
-
@Christoph-Hart ah ok... Will do!
-
@Christoph-Hart ok I found the bit to edit... I guess I'm confused as it's a parallel combination (2 ins, 2 outs) but only takes the left channel?
process = inputSignal : ve.moogLadder(normFreq,Q) <:_,_;
-
I don't have an answer because it's been a long time since I played with FAUST. But if you haven't seen this already you should check it out - https://www.kadenze.com/courses/real-time-audio-signal-processing-in-faust/info
-
Are we allowed to use the Moog name to describe the moog style filter on our UI?
-
@Christoph-Hart just digging into Juce.... Is there a reason all these Ladder filter options aren't included in Hise? And if it's possible to include them, please can you? Pretty please
namespace juce { namespace dsp { enum class LadderFilterMode { LPF12, // low-pass 12 dB/octave HPF12, // high-pass 12 dB/octave BPF12, // band-pass 12 dB/octave LPF24, // low-pass 24 dB/octave HPF24, // high-pass 24 dB/octave BPF24 // band-pass 24 dB/octave }; /** Multi-mode filter based on the Moog ladder filter. @tags{DSP}
-
@DanH I think if you called it Moog style you should be ok. Basically it comes down to trademark fair use. You are allowed to use trademarks as descriptors under certain circumstances, for instance if that's the only way to refer to a product.
If you run a phone repair shop you would obviously need to say somewhere in your advertising that you repair both iPhone and Android phones. Those are both trademarks but referencing them in this way wouldn't violate the trademark as it doesn't imply an affiliation with those brands or an endorsement from the brand owners.
So if you say your plugin contains a Moog filter that might be confusing - does that mean it was created by Moog specifically for you... so I think using Moog style would be the safe option because it's clear that it is not Moog. You could also include a disclaimer in your user manual/marketing material, etc.
Or talk to a trademark lawyer, or send Moog an email and ask them.