在VLC中隐藏视频控件

时间:2014-08-31 10:12:02

标签: c# vlc libvlc

我想在我的Windows窗体应用程序中隐藏来自VLC ActiveX插件控件的播放/暂停,音量按钮。

我尝试了这个解决方案,但它没有在悬停时给出我想要的结果。

string[] args = new string[] { "--intf dummy" };
axVLCPlugin1.addTarget("rtsp://192.168.1.117:554/live", args, AXVLC.VLCPlaylistMode.VLCPlayListInsert, 0);
axVLCPlugin1.play();

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

使用

 string[] args = new string[] {
      "-I", "dummy", "--ignore-config",
      @"--plugin-path=C:\Program Files (x86)\VideoLAN\VLC\plugins",
      "--vout-filter=deinterlace", "--deinterlace-mode=blend"
 };

参数

source