Hello,
for the purpose of an application that I write in c# with the ActiveX component, I would like to enable the http interface
I tryed :
lst.Add("extraintf=http");
lst.Add("http-host=127.0.0.1:8083");
for the options
but it doesn't seem to work
I saw that modifying the config file (vlcrc) allows to start the interface.
So I made a copy of this file and tryed :
lst.Add(@"config=my app path");
but the activeX doesn't seem to find the file (but the original file is no more used)
Can someone help me (either with the options, or by overloading the config file)?
Thanks