I was trying to add NDI output as a feature of my audio player application and it's not clear how - or if - that can be done. I installed the NDI tools that gets me the plugin and I tried to see if enabling it would give me a new output option.
Hplugin := BASS_Pluginload('Plugins.VST.NDI.Output.vst3', 0);
BASS_Pluginenable(Hplugin,true);
I copied the vst3 file into my app build directory and it compiles without any errors, but a call to while (BASS_GetDeviceInfo(i,di)) do
shows my sound cards, but does not show anything NDI related. I expect what I've done so far is probably way too simple.
Is this documented somewhere I didn't look? What should I be doing?
Thank you.