We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@psobot What I do wrong?
I open serum vst3 in pedalboard and would like to change 'mastervol' parameter. I can read it:
{ "mastervol": { "range": [ null, null, null ], "is_discrete": true, "is_boolean": false, "num_steps": 2147483647, "raw_value": 0.699999988079071, "string_value": " 70% (-9.3 dB)" }
But I can't change, but my usual DAW (studio one) support it.
from pedalboard import load_plugin serum_path = r"C:\Program Files\Common Files\VST3\Xfer\Serum.vst3\Contents\x86_64-win\Serum.vst3" synth_plugin = load_plugin(serum_path) synth_plugin.mastervol = 1.0 print("Showing synth GUI..") synth_plugin.show_editor() #no changes at gui
I already tried:
synth_plugin = load_plugin(plugin_serum_path, parameter_values={'mastervol': ' 46% (-20.2 dB)'}) # predefine on load
synth_plugin.__setattr__('mastervol', ' 2% (-97.2 dB)')
synth_plugin['mastervol'].raw_value = 1.0
synth_plugin.parameters['mastervol'].raw_value = 0.46 # ' 46% (-20.2 dB)'
synth_plugin.parameters['mastervol'].raw_value =' 46% (-20.2 dB)'
Nothing changes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@psobot What I do wrong?
I open serum vst3 in pedalboard and would like to change 'mastervol' parameter. I can read it:
But I can't change, but my usual DAW (studio one) support it.
I already tried:
synth_plugin = load_plugin(plugin_serum_path, parameter_values={'mastervol': ' 46% (-20.2 dB)'}) # predefine on load
synth_plugin.__setattr__('mastervol', ' 2% (-97.2 dB)')
synth_plugin['mastervol'].raw_value = 1.0
synth_plugin.parameters['mastervol'].raw_value = 0.46 # ' 46% (-20.2 dB)'
synth_plugin.parameters['mastervol'].raw_value =' 46% (-20.2 dB)'
Nothing changes
The text was updated successfully, but these errors were encountered: