I made an C# .net 2 app with 084 activeX that works pretty good but not with all computer (not all webcams in fact). I tried to use a special kind of cam that works with 085 player.
But my problem is that I got an error with 085 activeX I don't have with 084 in the addtarget property.
It says : a value is not good to simplify.
here is my code :
Code: Select all
string[] options = new String[2];
string thisMRL2 = "dshow://";
options[0] = ":sout=#transcode{vcodec=mp4v,vb=1024,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=display,dst=std{access=udp,mux=ts,url=" + MyApp.Properties.Settings.Default.DistantIP + ":" + MyApp.Properties.Settings.Default.DistantPORT + "}}";
AVLClocal.addTarget(thisMRL2, options, AXVLC.VLCPlaylistMode.VLCPlayListReplaceAndGo, -666);
AVLClocal.play();
Is the 085 activeX is stable? and work properly?
THX