我想使用VLC.net。我是通过nuget vlc.net.wpf下载的。
以下是Codeplex的示例代码。
VlcContext.LibVlcDllsPath = CommonStrings.LIBVLC_DLLS_PATH_DEFAULT_VALUE_AMD64;
//Set the vlc plugins directory path
VlcContext.LibVlcPluginsPath = CommonStrings.PLUGINS_PATH_DEFAULT_VALUE_AMD64;
//Set the startup options
VlcContext.StartupOptions.IgnoreConfig = true;
VlcContext.StartupOptions.LogOptions.LogInFile = true;
VlcContext.StartupOptions.LogOptions.ShowLoggerConsole = true;
VlcContext.StartupOptions.LogOptions.Verbosity = VlcLogVerbosities.Debug;
//Initialize the VlcContext
VlcContext.Initialize();
我无法在Vlc.DotNet.Core(版本2.1.62.0)中找到VlcContext
类。
如何使用Vlc.net编写代码?
答案 0 :(得分:1)
答案可能是您正在查看Codeplex文档,该文档现已过时/停用,而不是Github文档:https://github.com/ZeBobo5/Vlc.DotNet。库下载中包含示例文件,可帮助您了解事物的组合方式。 Vlc.DotNet库目前处于相对测试阶段 - 并非一切正常,仍有一些问题被解决。