What do reverbs have to modulate?
-
- KVRAF
- 7579 posts since 17 Feb, 2005
I noticed in Reason the RV7000 Reverb has a modulation parameter. I've also heard mentioned around here that the other high end reverbs do some kind of modulation to give them a high class sound. Well I was wondering, what is it that CAN be modulated inside a reverb? Comb Filters? Bandpass filters? Pitch shifters?
-
- KVRAF
- 6242 posts since 26 Sep, 2003 from right here, as you can see ...
mostly the interpolated delays get modulated, which is done to avoid the buildup of resonances. also the sound of these modulations has a very beloved impact in general on the sound of reverbs. they sound way more artificial then (if the mod algorithm is good), but a lot of users love particular this behave ...
regards,
brok landers
BIGTONEsounddesign
gear is as good as the innovation behind it-the man
brok landers
BIGTONEsounddesign
gear is as good as the innovation behind it-the man
-
- KVRist
- 166 posts since 23 Feb, 2006
Some reverbs just have basically a chorus across the whole effect. You can chorus or vibrato reverb tails yourself with other plugins. I'm not at all convinced about this - it's more of an effect. The nicer reverb algorithmns are based around multiple delay lines, and each one can be modulated independantly so its more of a diffused effect and less like a chorus.
- KVRAF
- 4807 posts since 10 Feb, 2006 from Stockholm, Sweden
Ok. Speaking some more technological stuff, can whitenoise be used to modulate the delaylines?
-
- KVRAF
- 6242 posts since 26 Sep, 2003 from right here, as you can see ...
you can of course use any waveform to modulate delaylines in a reverb, but whitenoise would brobably not be suitable, as the result would be more noised than you want to ... 
regards,
brok landers
BIGTONEsounddesign
gear is as good as the innovation behind it-the man
brok landers
BIGTONEsounddesign
gear is as good as the innovation behind it-the man
- KVRAF
- 4807 posts since 10 Feb, 2006 from Stockholm, Sweden
I'm trying to use noise, and it works ok, just have to use very low levels of it to avoid making it noisy.
- KVRAF
- 3838 posts since 5 Mar, 2004 from Millicent Australia
Noise in very small amount is a very nice mod source as it is random.
Try: get a sample of white noise, pitch it down a way to slow it down and then use it as a mod source for a random wander.
Try: get a sample of white noise, pitch it down a way to slow it down and then use it as a mod source for a random wander.
Benedict Roff-Marsh
http://www.benedictroffmarsh.com
http://www.benedictroffmarsh.com
- KVRAF
- 4807 posts since 10 Feb, 2006 from Stockholm, Sweden
Hmmmm. Can a regular lowpass filter do the slowdown?
-
- KVRist
- 174 posts since 19 Oct, 2004
You could use a leaky integrator, in effect a sort of lowpass filter..jobromedia wrote:Hmmmm. Can a regular lowpass filter do the slowdown?
ie.
mod_new = (mod_old + step*rand)*0.99;
delay = length + mod;
where rand is between -1 and 1..
This way you never change the delay length by more than 'step' in one sample period. You can adjust this and the 0.99 'leak' parameter to get different rates of modulation.
