Hi,
does anybody know if it is possible to map also the volume for the effects that don't have any volume setting?
When I activate an effect (Daft funk VST, I have mapped a button to trigger it), the volume output becomes a little weaker.
I would like to compensate that gap. Is it possible to set it adding a command to the mapping?
I don't know, something like "...& volume_effect 110%".
I tried to set "...& volume 110%" but it increases the overall volume and then, when I turn the effect off, the volume don't get back to 100%.
I found a "volume" plugin effect, but it is not possible to set it over 100% (correct me if I am wrong).
Could anyone help me out with this? :)
does anybody know if it is possible to map also the volume for the effects that don't have any volume setting?
When I activate an effect (Daft funk VST, I have mapped a button to trigger it), the volume output becomes a little weaker.
I would like to compensate that gap. Is it possible to set it adding a command to the mapping?
I don't know, something like "...& volume_effect 110%".
I tried to set "...& volume 110%" but it increases the overall volume and then, when I turn the effect off, the volume don't get back to 100%.
I found a "volume" plugin effect, but it is not possible to set it over 100% (correct me if I am wrong).
Could anyone help me out with this? :)
Posté Sun 01 Mar 15 @ 4:54 am
Correct the volume plugin is just a gate, there is no gain with it.
Your keyboard mapping could increase/decrease the gain by a small amount something like
Your script here & effect_active 'daftfunk' ? gain +5% : gain -5%
Please note I don't like this way I rather do this, there's not much in it, but the top one switches the state of the FX before it queries that means + & - order are reversed
effect_active 'daftfunk' ? Your Script & gain -5% : Your Script & gain +5%
Your keyboard mapping could increase/decrease the gain by a small amount something like
Your script here & effect_active 'daftfunk' ? gain +5% : gain -5%
Please note I don't like this way I rather do this, there's not much in it, but the top one switches the state of the FX before it queries that means + & - order are reversed
effect_active 'daftfunk' ? Your Script & gain -5% : Your Script & gain +5%
Posté Sun 01 Mar 15 @ 6:49 pm