ÆTHER is a delay and reverb plugin. The delay is based on tape-delay mechanisms, while the reverb is inspired by (but not limited to) spring reverbs.
It is designed for a variety of applications, from subtle spring-reverb guitar tones to dreamy synth pads, as well as dub-style snare sounds.
The plugin is available in VST, AU and LV2 format on the release page
To build ÆTHER, you need CMake:
# Clone the repository and update submodules
$ git clone https://github.com/smiarx/aether.git
$ cd aether
$ git submodule update --init --recursive
# build
$ cmake -Bbuild -DCMAKE_BUILD_TYPE=Release .
$ cmake --build build --config Release --parallel 4VST will be located in build/Aether_artifacts/Release.
You can also build with -march=native to build specifically for you machine.
$ cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-march=native" .
$ cmake --build build --config Release --parallel 4