ActiveX streaming: has anybody succeeded?
Posted: 18 Jan 2006 19:35
I am trying to test streaming from the ActiveX without any luck so far. The media always plays in the control and is not streamed. I am using visual Studio and C#. Here is a snippet of my C# code:
If anybody has succeeded at streaming from the ActiveX I would love to hear from you. Code in any language showing how it's done is fine.
Thanks!
Code: Select all
axVLCPlugin.playlistClear();
string[] lOptions = new string[] {":sout=#duplicate{dst=std{access=udp,mux=ts,url=239.20.30.40:1234}}"};
axVLCPlugin.addTarget(@"c:\temp\ice_mulCBR.avi", lOptions, AXVLC.VLCPlaylistMode.VLCPlayListAppendAndGo, -666);
Thanks!