I am new to JUCE dev and have started to create a basic utility plugin. I am wondering how one would go about making frequencies below a slider value mono? For example, similar to Ableton’s utility plugin, there is a way to select a frequency via a slider and then all the frequencies below that threshold are mono. Screenshot attached. Thanks so much!
i’d just choose what fits better to the vision of the plugin. the multiband split for instance would give the advantage that you can easily add some more processors into the chain of each band. people would often like to saturate their lowend a bit for example. but the other option might perform a little better
Mhm, I think this simple statement might confuse people not too familiar with filter theory. So just for the record, FIR filters are not linear phase filters generally. FIR filters can model filter with any kind of phase response, including linear phase filters but also filters with an arbitrary non-linear phase response. It’s up to the filter design method used to calculate the coefficients if the Filter will be linear phase or not. The FIR design methods found in juce::dsp::FilterDesign all design linear phase filters.