我想在我的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();
答案 0 :(得分:1)
https://wiki.videolan.org/Documentation:WebPlugin/#Optional_elements
axVLCPlugin1.toolbar = false;
答案 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"
};
参数