Using VlcManager with last version of Vlc.DotNet

回眸只為那壹抹淺笑 提交于 2019-12-06 08:42:35

问题


I'm trying to use the Vlc.DotNet library for my WinForms C# application. I wan't to use the VlcManager from the Core.Interops of the Vlc.DotNet library but there is no recent documentation. In earlier version you can create an instance of the VlcControl and the VlcManager and set the VlcManager to the VlcControl, but this isn't availible anymore within the last version of Vlc.DotNet.

Can anybody tell my how I can add (multiple) VlcControls to a VlcManager? This should decrease memory usage and gives the possibility to use more functionalities, like NextFrame.

Code I could use 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;

来源:https://stackoverflow.com/questions/30028851/using-vlcmanager-with-last-version-of-vlc-dotnet

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!