The project is VST-plugin for equalization. The user interface includes a spectrum analyzer, a filter control panel, frequency response curves, and level meters.
There are 3 types of IIR-filters available:
- low pass;
- high pass;
- peak.
The releases have an installer for Windows, but if you want to test the plugin for other operating systems, try building it.
- Install CMake version 3.21 or higher
- (Optional) Install Clang compiler for C++
- (Optional) Install Ninja generator
-
Clone the repo with submodules
git clone https://github.com/SmEgDm/equalize_it.git --recursive
-
Set the formats you need in
CMakeLists.txt
(all formats can be found here)set(FORMATS [<format> ...])
-
Configure the project
cmake -B build G <generator>
-
Run build
cmake --build build --config Release
The filter is added by double-clicking on an empty area of the spectrum analyzer. The filter can be removed by pressing the right mouse button on the filter button (point on the spectrum analyzer).
To open the filter panel, click the filter button, and to hide it, click on an empty area. The panel is draggable.
Distributed under the GPL-3.0 License. See LICENSE
for more information.