By default the file name is shown on-screen. Under the ActiveX version of 0.9 you can get around this by setting the "name" argument of .playlist.add
Code: Select all
//Note: blank char as second argument prevents file name displayed on top of video
axVLCPlugin21.playlist.add(filePath, @" ", options);
Code: Select all
string[] options = new string[] { ":no-overlay", ":drop-late-frames"};
vlc1.AddToPlayList(filePath, @" ", options);
Any help greatly appreciated.
P.S. I am using 0.9.x because I need the sound to continue to be heard when I do a SetVlcObjectInt(ObjectType.VLC_OBJECT_INPUT, "rate", .... to something other than 1X and that part works great! Thanks VideoLan for the excellent control !!!