Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Noise gate #109

Open
vsariola opened this issue Oct 31, 2023 · 1 comment
Open

Noise gate #109

vsariola opened this issue Oct 31, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@vsariola
Copy link
Owner

It would be nice to have a thresholding / noise gate unit. https://en.wikipedia.org/wiki/Noise_gate

At simplest, a hard thresholding would be something like:

if (abs(signal) < threshold) {
  signal = 0
}

Features to be considered, if they cannot be implemented with the help of other units:

  • Hysteresis
  • Attack / Release i.e. transitions from gate on to gate off
  • Hold: how long to keep the gate open after signal drops below threshold
  • Ability to side-chain it: e.g. the input to noise gate is a signal before reverb; gate has hold, and then the gate is applied after the reverb. This prevents a very long tail from the reverb.
@vsariola vsariola added the enhancement New feature or request label Oct 31, 2023
@qm210
Copy link
Contributor

qm210 commented Oct 25, 2024

unless you did something there already, I would implement that in the near future (cause I also want one)

(what are you thoughts on "Hysteresis"?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants