I've done some exploring but noticed none of the EQ style presets use more that one band.
I suspect theoretically I should be able to stack some, but I thought I would just ask first before I waste my time trying.
In Plug'n Script is it possible to make a multiband EQ?
-
Blue Cat Audio Blue Cat Audio https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=39981
- KVRAF
- 6343 posts since 8 Sep, 2004 from Paris (France)
Sure, there is no limitation in what you can do - you can chain as many filters as you want in your code. We will maybe do an EQ sample in the future.
-
- KVRer
- 15 posts since 8 Dec, 2022
How do you put two EQ's together in a code? I'm guessing each would need to call the KittyDSP::Biquad::Filter filter(audioInputsCount);
but how do you get past the error saying a function with the same name and parameters already exists?
but how do you get past the error saying a function with the same name and parameters already exists?
-
- KVRAF
- 16738 posts since 13 Oct, 2009
Cascade your eq sections and give the functions different names. Start with a three band EQ with LoShelf, MidParametric, and HiShelf. You can use the cookbook examples to get started. If you carefully study the filter examples you can see how to plot a graph of the response as you change the parameters.kelsoncamp wrote: Mon Dec 12, 2022 3:01 am How do you put two EQ's together in a code? I'm guessing each would need to call the KittyDSP::Biquad::Filter filter(audioInputsCount);
but how do you get past the error saying a function with the same name and parameters already exists?
In fact, a useful exercise is to combine the (included) high pass example with the low pass example to come up with a bandpass. The filter functions are the easy part, plotting the graph is a bit more work.