robbert-vdh / nih-plug

Rust VST3 and CLAP plugin framework and plugins - because everything is better when you do it yourself
ISC License
1.66k stars 147 forks source link

Crisp: need more precision in low amount value range #76

Open unfa opened 1 year ago

unfa commented 1 year ago

I've started using Crisp to bring back some high frequency content especially to down-pitched sources.

However I've found I am using Amount values between 1% and 4% and I wish I could go lower yet. image

As far as I'm concerned, this control could go from 0.1% to 10% rather than from 1% to 100%.

I wonder if anyone else has the same issue?

robbert-vdh commented 1 year ago

The display value is rounded, but parameter's actual value isn't. So it can be set as close to zero as you want. If you hold down Shift while dragging you can drag finer, and if you Alt+Click on the field you can type in a value (don't know if that works properly in Ardour, does work in Bitwig, doesn't work in REAPER). You can also do that in your host's generic UI.

robbert-vdh commented 1 year ago

Also, what I often end up doing if I want a bit more control is to use the 'wet only' mode and to do the mixing in my DAW. So in Bitwig I'd set it to wet only, hit ctrl+G to group, add the dry signal back in, and then adjust the wet signal's levels and maybe add an EQ or stereo width adjustment to the wet signal. That's not as easy to do in other DAWs though.

unfa commented 1 year ago

Yeah, adding a separate bus just for this effect is a bit much - it'll try the Shift+Drag and Alt+Click techniques you've mentioned, thanks :)