2022-05-29 21:42:45 +10:00
|
|
|
# Crossover
|
|
|
|
|
2022-07-23 02:46:34 +10:00
|
|
|
This plugin is as boring as it sounds. It cleanly splits the signal into two to
|
|
|
|
five bands using a variety of algorithms. Those bands are then sent to auxiliary
|
|
|
|
outputs so they can be accessed and processed individually. Meant as an
|
|
|
|
alternative to Bitwig's Multiband FX devices but with cleaner crossovers and a
|
|
|
|
linear-phase option.
|
2022-05-29 21:42:45 +10:00
|
|
|
|
|
|
|
In Bitwig Studio you'll want to click on the 'Show plug-in multi-out chain
|
|
|
|
selector' button and then on 'Add missing chains' to access the chains. The main
|
2022-10-20 01:00:20 +11:00
|
|
|
output will not output any audio. To save time, you can save this setup as the
|
|
|
|
default preset by right clicking on the device. Any new Crossover instances will
|
|
|
|
then already have the additional output chains set up.
|
2022-05-29 21:42:45 +10:00
|
|
|
|
2022-06-02 23:59:09 +10:00
|
|
|
<!-- Screenshots and other binary assets aren't in this repo as that would add bloat to NIH-plug checkouts -->
|
|
|
|
|
|
|
|
![Screenshot in Bitwig](https://imgur.com/lvwgHQf.png)
|
|
|
|
|
2022-05-29 21:42:45 +10:00
|
|
|
## Download
|
|
|
|
|
|
|
|
You can download the development binaries for Linux, Windows and macOS from the
|
|
|
|
[automated
|
2022-06-10 23:59:18 +10:00
|
|
|
builds](https://github.com/robbert-vdh/nih-plug/actions/workflows/build.yml?query=branch%3Amaster)
|
2022-05-29 21:42:45 +10:00
|
|
|
page. Or if you're not signed in on GitHub, then you can also find the latest nightly
|
|
|
|
build [here](https://nightly.link/robbert-vdh/nih-plug/workflows/build/master).
|
|
|
|
|
2022-10-10 06:35:25 +11:00
|
|
|
On macOS you may need to [disable
|
|
|
|
Gatekeeper](https://disable-gatekeeper.github.io/) as Apple has recently made it
|
|
|
|
more difficult to run unsigned code on macOS.
|
2022-05-29 21:42:45 +10:00
|
|
|
|
|
|
|
### Building
|
|
|
|
|
2022-05-29 22:54:28 +10:00
|
|
|
After installing **nightly** [Rust](https://rustup.rs/) toolchain, you can
|
|
|
|
compile Crossover as follows:
|
2022-05-29 21:42:45 +10:00
|
|
|
|
|
|
|
```shell
|
2022-05-29 22:54:28 +10:00
|
|
|
cargo +nightly xtask bundle crossover --release
|
2022-05-29 21:42:45 +10:00
|
|
|
```
|