You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mezmay
1d88f636ea
|
9 years ago | |
---|---|---|
BerVibrato | 9 years ago | |
README.md | 9 years ago |
README.md
#Vibrato audio effect
Vibrato is a musical effect consisting of a regular, pulsating change of pitch. It is used to add expression to vocal and instrumental music
Using:
#include "BerVibrato/BerVibrato.h"
//...
BerVibrato vbr;
vbr.initialize(SampleRateHz);
//...
vbr.setDepth(depth); // depth (amount) from (0; 1]
vbr.setFrequency(freq); // Vibrato rate in Hz
//...
vbr.processOneSample(sample);