init_plugins!() { /* proc-macro */ }
Expand description
Initilizes the autoloaded plugins
ยงExample
use rustsynth_derive::init_plugins;
use rustsynth::{core::{CoreRef,CoreCreationFlags},plugin::Plugin};
let mycore = CoreRef::new(CoreCreationFlags::NONE);
init_plugins!();
let clip = Plugins::ffms2::Source(&mycore, "./demo.mp4".to_owned()).get_node("clip").unwrap();