Hello
What's wrong with this :
string MRL = "udp://@:1234";
string record=@"c:\Camera.mpg";
SCREEN=new string[9];
SCREEN[0] = ":sout-udp-caching=300";
SCREEN[1] = ":sout=#duplicate{dst=display,dst=std{access=file,mux=ts,url=\""+record.ToString()+"\"}}";
SCREEN[2] = ":sub-filter=marq";
SCREEN[3] = ":marq-x=100";
SCREEN[4] = ":marq-y=0";
SCREEN[5] = ":marq-marquee=\""+"Hello"+"\"";
SCREEN[6] = ":marq-timeout=0";
SCREEN[7] = ":marq-color=32768";
this.axVLCPlugin1.addTarget(MRL,SCREEN,AXVLC.VLCPlaylistMode.VLCPlayListAppendAndGo,-666);
this.axVLCPlugin1.play();
the marq-marquee value is VLC which is the default value in VLC config.
How can i change this value with the ActiveX
If somebody know where i can find samples in C# it is welcome.
Thanks