File Load Dialog Problem in Matlab Audio Plugin

1 回表示 (過去 30 日間)
Ben Jancovich
Ben Jancovich 2017 年 5 月 4 日
回答済み: Charlie DeVane 2019 年 5 月 13 日
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 件のコメント
Stephan Moeller
Stephan Moeller 2018 年 3 月 26 日
I would also like to know how to program this. Like loading filter coefficiants

サインインしてコメントする。

回答 (1 件)

Charlie DeVane
Charlie DeVane 2019 年 5 月 13 日
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

カテゴリ

Help Center および File ExchangeAudio Plugin Creation and Hosting についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by