FILT-R is a cross-platform filter modulator based on plugins like ShaperBox and FilterShaper. It is the second version of FLTR-1 JSFX for the Reaper DAW. It includes 6 filter types: Linear, Sallen-Key, Moog, 303, MS-20 and Phaser. The filters also come with different modes and slopes.
Also check other plugins from this collection:
- GATE-12 - An envelope generator for volume/gate control.
- TIME-12 - An envelope based delay modulator.
- REEV-R - Convolution reverb with pre and post modulation.
- 6 Unique filters with different slopes and modes
- 5 Modes per filter (LP, BP, HP, Notch and Peak)
- 12 patterns for resonance and cutoff triggered by midi notes
- Paint mode with user defined shapes
- Point type - hold, curve, s-curve, stairs ..
- Built-in sequencer and randomizer
- Envelope followers for resonance and cutoff
- Tempo sync or lfo rate (Hz)
- Attack and release smooth
- Pre and post waveform display
- MIDI trigger mode
- Audio trigger mode
- Download latest release
- Current builds include VST3 and LV2 for Windows, Linux and macOS plus AU for macOS.
- Clap is planned when there is official JUCE support.
FILT-R is an envelope generator plugin that applies the same engine of GATE-12 and TIME-12 to filter modulation. It includes 6 unique filters, three of them grabbed from Saikes Yutani Bass (303, MS-20 and Linear), a Moog filter which is the JUCEs stock ladder filter adapted to this project and finally an Analog/Sallen Key and Phaser filters which came from Vital synth source code.
Like GrossBeat, FILT-R includes 8 point types that can be changed by right clicking a point, the default point type can also be changed in the tools-bar.
Paint mode was remade in version 2, it now works with custom patterns that can be edited like the main audio patterns and rescaled before placing on view.
This mode has to be activated by clicking the Paint
button, a list of patterns will show above the editor window.
There are 32 patterns that can be used and edited, these patterns are saved in the settings file and shared by any instances of the plugin.
Envelope followers for cutoff and resonance can be activated in the Envelope
section by setting the amount positive or negative. This feature like many others was introduced by ShaperBox and had to be included in this project.
Patterns are not constrained by start and endpoints like they used to, they can have only one point or no points, this mainly allows patterns to be seamlessly rotated to create new rhythm variations.
Multiple points can be selected and moved around, the selections can also be scaled and skewed by holding Alt + drag
the leftmost or rightmost handles, this allows to quickly make rising or falling wedges as well as compress or expand sets of points.
Audio transients can be used to trigger the envelope or restart its cycle, its heavily based on ShaperBox and includes two modes of detection: Simple - based on envelope following and Drums - based on total energy during a small time window. This feature is also heavily based on ShaperBox and also allows to use sidechain as input.
MIDI can be used to trigger the envelope or restart its cycle, it can also be used to change patterns (defaults to channel 10).
Pattern changes can be synced to the playback beat position, this allows for to make timely transitions in real time in sync with the song position.
Clicking the Seq
button toggles the sequencer mode where patterns can be built and randomized with ease.
The left buttons are the edit mode used when clicking the view. On the right there is a row of shapes used to draw on the view and below is the randomization of the current selected mode.
After creating a sequence click Apply
to save it as the current pattern and edit from there.
Shift
for fine slider adjustments.Shift
toggles snap on/off.Mouse wheel
on view changes grid sizeRight click
points changes point type.Alt + click
to insert new points.Alt + drag
selection handles skews selected points.Right click + drag
in paint mode changes paint tool tension.Shift + mouse wheel
on sequencer to change step size.
MacOS builds are untested and unsigned, please let me know of any issues by opening a ticket, don't expect a promptly fix as I don't have access to that OS.
Because the builds are unsigned you may have to run the following commands:
sudo xattr -dr com.apple.quarantine /path/to/your/plugins/FILT-R.component
sudo xattr -dr com.apple.quarantine /path/to/your/plugins/FILT-R.vst3
sudo xattr -dr com.apple.quarantine /path/to/your/plugins/FILT-R.lv2
The commands above will recursively remove the quarantine flag from the plugins.
git clone --recurse-submodules https://github.com/tiagolr/filtr.git
# windows
cmake -G "Visual Studio 17 2022" -DCMAKE_BUILD_TYPE=Release -S . -B ./build
# linux
sudo apt update
sudo apt-get install libx11-dev libfreetype-dev libfontconfig1-dev libasound2-dev libxrandr-dev libxinerama-dev libxcursor-dev
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -S . -B ./build
cmake --build ./build --config Release
# macOS
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -S . -B ./build
cmake --build ./build --config Release