Change a VST plugin initial settings from .ardour saved file

Hi there. I have a VST3 plugin (NDI Input and NDI Output) configured in my ardour file.

I’d like to be able to pass certain settings to the plugins via de save file so I can create a template.

After looking at the XML .ardour file I couldn’t quite see where the parameters are set. Any idea?

      </Processor>
      <Processor id="6489" name="NDI Input" active="1" user-latency="0" use-user-latency="0" type="vst3" unique-id="543F6CA4C0EE481F89EA57C17DC26443" count="1" custom="0">
        <ConfiguredInput>
          <Channels type="audio" count="1"/>
        </ConfiguredInput>
        <CustomSinks>
          <Channels type="audio" count="16"/>
        </CustomSinks>
        <ConfiguredOutput>
          <Channels type="audio" count="1"/>
        </ConfiguredOutput>
        <PresetOutput/>
        <InputMap-0>
          <Channelmap type="audio" from="0" to="0"/>
        </InputMap-0>
        <OutputMap-0>
          <Channelmap type="audio" from="0" to="0"/>
        </OutputMap-0>
        <ThruMap/>
        <vst3 last-preset-uri="" last-preset-label="" parameter-changed-since-last-preset="0">
          <chunk>VlNUMwEAAAA1NDNGNkNBNEMwRUU0ODFGODlFQTU3QzE3REMyNjQ0M2QAAAAAAAAAAQAAAAAAAAAAAAAAJAAAAEVDMkFVRElPIChERVNLVE9QLVZKQjQxUzUgKEFDR1RSTCkpAExpc3QBAAAAQ29tcDAAAAAAAAAANAAAAAAAAAA=</chunk>
        </vst3>
      </Processor>

Plugin parameters/presets are generally totally opaque blobs of data that are generated by the plugin and are typically not human-redable or editable.

In your case, the preset/parameters are encoded by the plugin in the <chunk> node inside the <vst> node. As you will see, you would face a significant challenge to try to adjust the preset by editing the file.

Thanks Paul and Merry Crhistmas! I will go the manual route of generating the data manually using the plugin UI and then see if copying it will allow me to make it a template.

P

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.