使用 vlc.net 的 WPF
WPF using vlc.net
我想使用 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
class。
如何使用 Vlc.net 编写代码?
答案很可能是您正在查看 Codeplex 文档,现在是 outdated/discontinued,而不是 Github 文档:https://github.com/ZeBobo5/Vlc.DotNet。库下载中包含示例文件,可以帮助您弄清楚它们是如何组合在一起的。 Vlc.DotNet 库目前处于相对测试阶段 - 并非一切正常,仍有一些问题正在解决。
我想使用 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
class。
如何使用 Vlc.net 编写代码?
答案很可能是您正在查看 Codeplex 文档,现在是 outdated/discontinued,而不是 Github 文档:https://github.com/ZeBobo5/Vlc.DotNet。库下载中包含示例文件,可以帮助您弄清楚它们是如何组合在一起的。 Vlc.DotNet 库目前处于相对测试阶段 - 并非一切正常,仍有一些问题正在解决。