VLC ActiveX enable subtitles

Jul 27 2015 10:15 AM

I have a Windows Forms Window in my Visual Studio Project with an AxVLCPlugin2 Element from ActiveX Plugin that comes with VLC.I made a button that disable the subtitles but now when i try to enable them it doesn't work...this is my disable button

if(VLC.subtitle.count > 0) {     VLC.subtitle.track = 0;      VLC.video.subtitle = -1; }

and I tried this to enable them

VLC.subtitle.track = 1;  VLC.video.subtitle = 1;

Could anyone help me?


Answers (1)