我正在使用VS 2017并使用C#进行编码。我安装了4个Vlc库来在Windows窗体应用程序中播放视频。我在表单中放入了一个Vlc控件。然后,在代码中,我写道:
vlcControl1.SetMedia(curFolder + @"media1.mp4");
vlcControl1.Play();
当我运行它时,我会得到一个"找不到VlcLibDirectory"。我需要做什么?我看到我可以通过VlcControl1属性中的视觉控件设置该目录,但那个文件夹是什么?
很抱歉来晚了。。。
你已经完成了第一部分,在Visual Studio中获取包,现在你需要它的库
下载此:https://github.com/ZeBobo5/Vlc.DotNet/tree/master
将lib目录放在应用程序可以找到的地方,并将VlcLibDirectory设置为新的DirectoryInfo(目录路径)。
我是这样做的:
var libDirectory = new DirectoryInfo(Path.Combine(".", "libvlc", IntPtr.Size == 4 ? "x86" : "x64"));
vlcControl1 = new Vlc.DotNet.Forms.VlcControl();
vlcControl1.VlcLibDirectory = libDirectory;
需要加载的库是libvlc.dll,它位于安装VLC软件的文件夹中。
我为此访问了几乎所有的谷歌结果页面,几乎失去了希望,但这最终对我起到了作用:
1) 在我的FormsApp文件中创建了一个对象:
VlcControl vlcControl1 = new VlcControl();
2) 在构造函数中实例化:
VlcControl vlcControl1 = new VlcControl();
3) 在我的FormsApp_Load()中添加了以下行:
vlcControl1.BeginInit();
vlcControl1.VlcLibDirectory = new DirectoryInfo(_exeFolder + @"libvlcwin-x86"); //Make sure your dir is correct
vlcControl1.VlcMediaplayerOptions = new[] { "-vv"}; //not sure what this does
vlcControl1.EndInit();
YourControlContainer.Controls.Add(vlcControl1); //Add the control to your container
vlcControl1.Dock = DockStyle.Fill; //Optional
this.vlcControl1.Click += new EventHandler(vlcControl1_Click); //Optional - added a click event .Play()
希望这能帮助到别人。
我也遇到过这个问题。
我只需查看表单上VlcControl的属性,并通过浏览到"libvlc.dll"所在的目录来更改媒体播放器类别下的VlcLibDirectory项。
(在我的应用程序C:UsersMCOTsourcereposWindowsApp3packagesVideoLAN.LibVLC.Windows.3.0.6buildx86
中)
@Thanin的答案正是我所需要的。。。这里有一个代码片段,指向应该安装库的位置。
//InitializeComponent();
using (RegistryKey rk = Registry.LocalMachine.OpenSubKey(
"SOFTWARE\VideoLAN\VLC",
RegistryKeyPermissionCheck.ReadSubTree,
RegistryRights.QueryValues))
{
_Vlc.SourceProvider.CreatePlayer(
new DirectoryInfo(rk.GetValue("InstallDir") as string),
new string[] { });
}