Page 1 of 1

ActiveX V 1 - Hide File Path?

Posted: 10 Mar 2010 17:58
by izzop
Hi,

I'm currently using the VLC ActiveX Plugin Version 1 in a C# project.

I've noticed that when ever it starts a movie that the path including filename are being displayed and then fades.

Does anyone know how I can turn this off?

Thanks & Regards

Re: ActiveX V 1 - Hide File Path?

Posted: 10 Mar 2010 18:20
by izzop
Just thought I'd let people know that I managed to disable is through Options: -

Code: Select all

private void Form1_Load(object sender, EventArgs e) { int file_count = 0; int x = 0; string[] mediapaths = Directory.GetFiles(@"C:\Movies", "*.m2v"); foreach (string file in mediapaths) { if (Directory.Exists(file)) { } else { file_count++; } } string[] options = new string[1]; options[0] = ":no-video-title-show"; for (x = 0; x < file_count; x++ ) { axVLCPlugin1.addTarget(mediapaths[x],options,AXVLC.VLCPlaylistMode.VLCPlayListAppend,x); } axVLCPlugin1.play(); } }
Regards

Re: ActiveX V 1 - Hide File Path?

Posted: 10 Mar 2010 20:51
by Jean-Baptiste Kempf
This is correct.

Re: ActiveX V 1 - Hide File Path?

Posted: 11 Sep 2012 08:32
by vairavganesh
what should i do with the above code.........i m a new user..thanks in advance