Dear Vegas Pro scripters,
I'm working on a C# script (Extension) that adds proDAD Mercalli v4 Plugin on selected Clips.
What I want to do, is to read (get) the Parameters inside the Mercalli v4 Plugin modify some of them and write (set) the Parameters back.
Then I would like to reanalyse.
Can someone help me or give me an hint.
Thank you very much!
Peter
PS: I know there exists a similar Extension from an user, but I want to create an another Extension by myself, because the existing Extension does not fit my Needs. Also the Extension is compiled so that I cannot get how it works.
using (UndoBlock undo = new UndoBlock("Mercalli add"))
{
PlugInNode plugIn = vegas.VideoFX.GetChildByName("proDAD Mercalli v4");
Effect effect = new Effect(plugIn);
clip.Effects.Add(effect);
// Get and set Parameters of Plugin
// Reanalyse
}