File Load Dialog Problem in Matlab Audio Plugin

1 visualizzazione (ultimi 30 giorni)
Ben Jancovich
Ben Jancovich il 4 Mag 2017
Risposto: Charlie DeVane il 13 Mag 2019
This is my first time writing code using the audio plugin class, so I apologize if this is a bit of a silly question. I'm trying to modify audiopluginexample.FastConvolver to write a simple convolution engine VST plugin, but I'm having trouble adding a file load dialog to allow end users to load their own impulse response. I'm using uigetfile as a property value, which works fine, except that it is called when generating the plugin code rather than in the final plugin. I suspect that this may need to be moved to a method so it runs in the when the plugin is instantiated in a DAW. The addition of this uigetfile property has also caused a few parse errors elsewhere in unmodified parts of the original code, including showing the next instance of the term "properties" as a parse error.
  1 Commento
Stephan Moeller
Stephan Moeller il 26 Mar 2018
I would also like to know how to program this. Like loading filter coefficiants

Accedi per commentare.

Risposte (1)

Charlie DeVane
Charlie DeVane il 13 Mag 2019
Sorry, there is currently no way to do this in a generated plugin.
As for the property value issue, suppose you set a property's default value using a function:
classdef
properties
MyProperty = myFunction(7)
end
% other stuff ...
end
In general, myFunction will be called once when the class is loaded into MATLAB, even before an instance of the class is created. It does not necessarily happen during validateAudioPlugin or generateAudioPlugin: it will have happened earlier if you have been working with the class. You can read more at https://www.mathworks.com/help/matlab/matlab_oop/specifying-properties.html
hth,
Charlie

Categorie

Scopri di più su Audio Plugin Creation and Hosting in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by