Using VlcManager with latest Vlc.DotNet

I am trying to use Vlc.DotNet library for my WinForms C # application. I don't want to use the VlcManager from the Core.Interops Vlc.DotNet library, but there is no recent documentation. In an earlier version, you can instantiate VlcControl and VlcManager and set VlcManager to VlcControl, but this is no longer available in the latest version of Vlc.DotNet.

Can anyone tell me how I can add (multiple) VlcControls to the VlcManager? This should reduce memory usage and allow for more functions like NextFrame.

Code I could have used in earlier versions:

Vlc.DotNet.Forms.VlcControl vlcControl = new Vlc.DotNet.Forms.VlcControl();
Vlc.DotNet.Core.Interops.VlcManager vlcManager = new Vlc.DotNet.Core.Interops.VlcManager();
vlcControl.Manager = vlcManager;

      

+3


source to share





All Articles