Hi! I want to mimic a very basic compressor with a
constant speed envelope follower without smoothing and also constant release speed. How can I do this?
(Note: If I talk about constant speed I actually mean it, i.e. linear time. The online help sometimes seemingly means constant time (= linear speed) when writing constant speed.)
Quote:
[...]
In a compressor we have 2 things: An 'envelope', basically a line that follows the audio level, and the compressor behavior itself. If the level drops a lot, release is faster - and this is based on the envelope. Now, if the envelope just follows sample levels, then there will be a lot of near-0 values (just when a waveform crosses 0) which would cause infinitely fast release behavior. The envelope line needs to be made such that this doesn't happen.
So, say we have a peak at level 1000 (sample value). Then I multiply that by .995 (default 'Base smoothing' value) and the next and previous peak value cannot be lower than that. So, say we get 1000, 0 then I replace it by 1000, 995. That may seem to be a lot, but after 1 ms (44 samples at 44.1 kHz), you're already down to 802. At 4 ms we're at 414. at 8 at 171 etc.
[...]
The first paragraph indicates non-constant release speed. If so, how to stop that? (With constant release speed the described problem should vanish, correct?)
Does the second paragraph mean that the envelope follower is fed with smoothed sample values instead of actual ones? If so, how can I prevent that? Does the envelope follower itself show constant speed behaviour?