Lush stereo chorus and phaser inspired by the Electro-Harmonix Small Stone EH4800 and Stereo Electric Mistress pedals
- Rate: Controls the rate of the LFO signal that modulates the speed at which the notches created by the All-Pass filters sweep back and forth across the spectrum. The same principle is applied to the comb filter created by the delay unit that originates the chorus effect.
- Phaser depth: Controls the sweeping range of the All-Pass notches. The more the Depth, the more pronounced the phasing effect.
- Chorus depth: Controls the amount of delay time applied by the delay unit. The more you turn the knob clockwise, the more pronounced the chorus effect.
- Color: When engaged, feedback is sent back to the Phaser input. Notice how the Stone Mistress carves into the frequency spectrum hollowing out the sound. Fundamentals and harmonics glide in and out for an extremely pronounced phasing/shifting effect.
The Stone Mistress consists of a Phaser and a Chorus unit in chain, modulated by a single LFO generator.
The phaser unit is modeled after the Electro-Harmonix Small Stone EH4800 Phase Shifter. The phase shifting effect is achieved by summing the dry and the wet signal: when the phase shifted signal (the wet signal) adds up to the dry signal, certain frequency components cancel each others out creating notches (the points in the spectrum where the magnitude is 0). These notches are subsequently modulated, effectively producing the typical sweeping tone of a phaser pedal.
The Small Stone is said to be a "four stages pedal" because it is made up of 4 all-pass filters. Specifically, the plugin is implemented with four first-order Infinite Impulse Response (IIR) all-pass filters. The transfer function of an all-pass filter is:
The
In order to obtain the classic sweeping tone of a phaser, the
where
Lastly, a color switch, enables a feedback line that adds back to input 80% of the signal coming out of the all-pass chain.
Full code can be inspected in the Filters.h and SmallStone.h files
The chorus effect is obtained by delaying a copy of the dry signal by a couple milliseconds. When the delayed copy is mixed with the original signal, not only the sound is perceived as wider, but a comb filter is created as well. This is moved back and forth along the spectrum by the LFO.
The dry signal copy can be delayed up to 50 milliseconds.
Full code available in the Delays.h file
The LFO signal is triangular. There's a 180° phase offset between left and right channel, so that the stereo image can be created. The rate goes up to 8Hz.
Code available in the Oscillator.h file.
Simply copy the .vst3 file in your system VST3 folder. Usually this is located at:
C:\Program Files\Common Files\VST3
Copy the .component (Audio Unit) file in:
/Library/Audio/Plug-Ins/Components
- Create a new "Source" Group in the Projucer project file.
- Drag and drop the following files inside said Group located in the /images folder:
- StoneMistressGUI.png
- ToggleSwitchUp.png
- ToggleSwitchDown.png
- Right click on each one of those files and make sure "Binary Resource" is ticked.
- Now you can open the code in a IDE of your choice and proceed to build the executables.
On some computers, the plugin GUI might be displayed with a lower DPI resolution inside Ableton. To fix this, right-click on the plugin's name in the plugin list and check/uncheck "Autoscale plugin window"