GModal / vSwell

vSwell is a volume envelope audio effect plugin. In LV2, VST, VST3 and CLAP formats.
MIT License
7 stars 0 forks source link

vSwell

vSwell is a volume envelope audio effect plugin. The effect can be triggered by an audio signal, external control or a MIDI notein.

The plugin is provided in two versions:

Plugins are provided in LV2, VST, VST3 and CLAP formats, compiled for Linux environments. With a working hvcc environment, the patch should compile for other systems.

Mono vs. Stereo

On the mono version the effect signal input is separate from the trigger signal input. This is mostly so alternative signal dynamics can act as a trigger (a fuzz can run through the effect, but the unboosted "clean" signal can be the trigger). However, other unrelated sounds can serve as the trigger, also.

The stereo version can select either channel (or both, or neither) as the trigger, and both channels have the envelope applied.

The mono version doesn't always work well with DAWs or other track-oriented applications. Two inputs and one output is more difficult to integrate into an automatic interface.

Parameters

vSwell only

vSwellST only

Envelope Terminology

vSwell uses the terms outlined on the graphic below for envelopes. The choice of terms is largely dictated by the Heavy (hvcc) compiler, as it only organizes parameters alphabetically. While relatively self-explanatory, here's a visual guide:

Shape param

Inputs/Output

(Port naming differs for different plugin formats. Above is the LV2 schema.)

Tips

Shape param

Warning!

Setting Attack Level and Mid Level above 1.0 AND the Shape parameter above 1.0 can lead to VERY high levels. There is a very simple 'safety' built in -- the output shouldn't exceed 2.5X the input.

About vSwell

vSwell is based on a Pure Data patch, and built with the Heavy (hvcc) Pd compiler and the DISTRHO Plugin Framework.

This plugin was inspired by Pierre Massat's cool 'GuitarExtended' blog, circa 2012, specifically the "Bold As Love" patch. However, that patch doesn't encorporate a schmitt trigger, some form of which is de rigueur for audio-triggered FX.

Unfortunately, the Heavy compiler doesn't include [threshold~], so I included a custom schmitt trigger abstraction.

The Pd source patch is also included, and the plugin should build for any other OS that supports the "modern" version of hvcc (modern being support for python3).

No effort has been made to integrate a fancy GUI for the plugin.

vSwell was written by Doug Garmon, and released under the MIT licence.

Installing the prebuilds

The Releases section has a zip file with pre-built Linux plugin binaries. There's currently no installer, so just move the associated plugins to your home .lv2, .vst, and .clap directories. And the .vst3 directory as well, although I've not tested the VST3 version.

The build version (Makefile) includes a simple installation script, for local (user home) use.

Building vSwell

Clone the vSwell source (and the DISTHRO Plugin Framework):

git clone -recursive https://github.com/GModal/vSwell

Open a terminal (or cd to) the ChaffVerb directory, then enter:

make

There's a simple install option for local (single user) install:

make install

The plugin folders for each type must be present for install to work. These are named .lv2, .vst, and .clap, in your home directory. Each plugin can be manually copied to the local directories as well.