Synths
COMMODORE 64 SID
- Emulates MOS Technology SID of the Commodore 64
- 3 Oscillators
- 4 wave shapes: Square, Triangle, Saw, Noise
- ADSR per oscillator
- Ring modulation (replaces triangle output) and hard sync between oscillators
- HP, BP, LP filters
- 8 voice polyphony
- Free / Open Source
- Windows VST 32/64
- Mac VST/AU 64
NINTENDO ENTERTAINMENT SYSTEM RP2A03
- Emulates Ricoh 2A03 of the NTSC Nintendo Entertainment System
- 2 Square wave channels
- 1 Triangle wave channel
- 1 Noise channel
- Waveform display
- Free / Open Source
- Windows VST 32/64
- Mac VST/AU 64
NINTENDO GAMEBOY PAPU
- Emulates hardware of Nintendo Gameboy
- 2 Square wave channels
- Sweeps on first square wave channel
- 1 Noise channel
- Waveform display
- Stereo output
- Free / Open Source
- Windows VST 32/64
- Mac VST/AU 32/64
SEGA MASTER SYSTEM SN76489
- Emulates Texas Instruments SN76489 of the Sega Master System and other consoles
- 3 Square wave channels
- 3 Note polyphony
- 1 Noise channel with 2 types
- Waveform display
- Free / Open Source
- Windows VST 32/64
- Mac VST/AU 32/64
SFX8
- Retro style sound effects – coin, laser, explosion, power up, jump & more
- Inspired by the sounds of the sounds of NES
- 32 parameters per sounds effect
- 9 waves: square, saw, sine, noise, triangle, pink, tan, whistle, breaker
- 16 pads
- Mutate existing sounds
- Based on SFXR & BFXR. Audio engine is open source.
- Windows VST 32/64
- Mac VST/AU 32/64
VOC VOCAL SYNTH
- Emulates glottis and shape of vocal tract
- Constrict oral cavity to change sound
- Waveform display
- Free / Open Source
- Windows VST 32/64
- Mac VST/AU 32/64
Effects
COMPRESSOR
DELAY
- Stereo delay
- Time or tempo sync
- Feedback and cross channel feedback
- 120 seconds maximum delay
- Free
- Windows VST 32/64
- Mac VST/AU 64
MVERB 2020
- Based on Mverb by Martin Eastwood Audio
- Studio quality, open-source reverb. Its release is intended to provide a practical demonstration of Dattorro’s figure-of-eight reverb structure and provide the open source community with a high quality reverb.
- Martin Eastwood’s version of this plugin is no longer updated, this is simply a 64 bit update of his plugin with the standard SocaLabs UI.
- Free
- Windows VST 32/64
- Mac VST/AU 64
- Linux VST 64
SAMPLE DELAY
- Mono or Stereo delay
- Delay in samples or ms
- Free
- Windows VST 32/64
- Mac VST/AU 64
Analysis
OSCILLOSCOPE
SPECTRUM ANALYZER
- Spectrum Analyzer
- Spectroscope
- Log scaling
- Free
- Windows VST 32/64
- Mac VST/AU 32/64
Developer Tools
AB TESTER
- Quickly A/B Test stereo signals
- Free
- Windows VST 32/64
- Mac VST/AU 32/64
ADD & INVERT
- Test if stereo signals are identical
- 2 stereo in, 1 stereo out
- Produces silence if signals identical, otherwise produces difference between signals. Inverts the 2nd stereo in and adds to the 1st
- Free
- Windows VST 32/64
- Mac VST/AU 32/64
CHANNEL MUTE
- Mute left or right channel individually
- Adjust gain on left or right channel individually
- Free
- Windows VST 32/64
- Mac VST/AU 32/64
COMPENSATED DELAY
- Mono or Stereo delay that reports latency equal to delay, effectively doing nothing. Used for testing latency compensation in your DAW.
- Delay in samples or ms
- Free
- Windows VST 32/64
- Mac VST/AU 64
HUGE GAIN
- For when you need things way louder
- Control left, right or stereo gain
- Increase levels by up to 100 dB!
- Free
- Windows VST 32/64
- Mac VST/AU 64
MATHS
- Run maths formulas on stereo channels
- 4 automatable parameters
- 33 built in functions
- 14 operators
- 1 ternary operator
- Free
- Windows VST 32/64
- Mac VST/AU 32/64
Examples:
- Swap left and right channels:
- l: r
- r: l
- Make mono:
- l: (l + r) / 2
- r: (l + r) / 2
- Invert polarity:
- l: -l
- r: -r
- Generate sine wave
- l: sin(t*10000)
- r: sin(t*10000)
- Automate gain:
- l: l * p1
- r: r * p1
Variables:
Variable | Description | Range |
l |
Left audio in | (-1..1) |
r |
Right audio in | (-1..1) |
li0 .. li255 |
Left audio in (delayed) | (-1..1) |
ri0 .. ri255 |
Right audio in (delayed) | (-1..1) |
lo0 .. lo255 |
Left audio out (delayed) | (-1..1) |
ro0 .. ro255 |
Right audio out (delayed) | (-1..1) |
p1 |
User parameter 1 | (0..1) |
p2 |
User parameter 2 | (0..1) |
p3 |
User parameter 3 | (-1..1) |
p4 |
User parameter 4 | (-1..1) |
t |
Free running time in seconds | (0..∞) |
s |
Free running sample position | (0..∞) |
c |
Cursor position in seconds | (0..∞) |
Variables:
Constants | Description | Value |
_pi |
π | 3.141592653589793238462643 |
_e |
e | 2.718281828459045235360287 |
_phi |
Golden Ratio | 1.61803398875 |
_PHI |
Golden Ratio Conjugate | 0.6180339887 |
_deltaS |
Silver Ratio | 2.41421356237 |
_rho |
Plastic Number | 1.32471795724 |
_q |
Default Q | 0.70710678118655 |
Built in Functions:
Name | Explanation |
hp12 / hp24 |
High pass filter (input, frequency, q) |
lp12 / lp24 |
Low pass filter (input, frequency, q) |
notch12 / notch24 |
Notch filter (input, frequency, q) |
bp12 / bp24 |
Bandpass pass filter (input, frequency, q) |
sin |
sine function |
cos |
cosine function |
tan |
tangens function |
asin |
arcus sine function |
acos |
arcus cosine function |
atan |
arcus tangens function |
sinh |
hyperbolic sine function |
cosh |
hyperbolic cosine |
tanh |
hyperbolic tangens function |
asinh |
hyperbolic arcus sine function |
acosh |
hyperbolic arcus tangens function |
atanh |
hyperbolic arcur tangens function |
log2 |
logarithm to the base 2 |
log10 |
logarithm to the base 10 |
log |
logarithm to base e (2.71828…) |
ln |
logarithm to base e (2.71828…) |
exp |
e raised to the power of x |
sqrt |
square root of a value |
sign |
sign function -1 if x<0; 1 if x>0 |
rint |
round to nearest integer |
abs |
absolute value |
min |
min of all arguments |
max |
max of all arguments |
sum |
sum of all arguments |
avg |
mean value of all arguments |
Built in Operators:
Operator | Description | Priority |
= |
assignment | -1 |
&& |
logical and | 1 |
|| |
logical or | 2 |
<= |
less or equal | 4 |
>= |
greater or equal | 4 |
!= |
not equal | 4 |
== |
equal | 4 |
> |
greater than | 4 |
< |
less than | 4 |
+ |
addition | 5 |
- |
subtraction | 5 |
* |
multiplication | 6 |
/ |
division | 6 |
^ |
raise x to the power of y | 7 |
Ternary Operator:
Operator | Description | Remarks |
?: |
if then else operator | C++ style syntax |
TONE GENERATOR
- Tone Generator
- 30 – 10000 Hz
- Sine, Saw, Triangle, Square, Noise
- Bandlimited signals
- Free
- Windows VST 32/64
- Mac AU 32/64
Gut zum zerschredern von Lautsprechern