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

Serum parameters can't be set #393

Open
manazoid opened this issue Jan 20, 2025 · 0 comments
Open

Serum parameters can't be set #393

manazoid opened this issue Jan 20, 2025 · 0 comments

Comments

@manazoid
Copy link

manazoid commented Jan 20, 2025

@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:

  1. synth_plugin = load_plugin(plugin_serum_path, parameter_values={'mastervol': ' 46% (-20.2 dB)'}) # predefine on load
  2. synth_plugin.__setattr__('mastervol', ' 2% (-97.2 dB)')
  3. synth_plugin['mastervol'].raw_value = 1.0
  4. synth_plugin.parameters['mastervol'].raw_value = 0.46 # ' 46% (-20.2 dB)'
  5. synth_plugin.parameters['mastervol'].raw_value =' 46% (-20.2 dB)'

Nothing changes

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

No branches or pull requests

1 participant