i installed vlc 0.8.6(not the a,b,c,d,.. version. Just the basic one) and used Odysee's Libvlc.cs for my application.
Code: Select all
LibVlc vlc = new LibVlc();
vlc.Initialize();
vlc.VideoOutput = pictureBox2;
vlc.PlaylistClear();
string[] Options = new string[] { ":sout=#duplicate{dst=display,dst=std {access=udp,mux=ts,dst=224.100.0.1:1234}}" };
vlc.AddTarget("http://" + "127.0.0.1" + ":8080", Options);
vlc.Play();
how can i fix this.
i have another code
Code: Select all
public AxAXVLC.AxVLCPlugin axVLCPlugin1;
axVLCPlugin1.addTarget("http://" + this.baglantiUserControl1.SunucuIP.ToString() + ":8080",
":file-caching=0", AXVLC.VLCPlaylistMode.VLCPlayListReplace, 0);
axVLCPlugin1.play();
i copied it to my app dir and to system32 but nothing works. How can i import that axvlc.dll
i cant use vlc 1.0.1 because i couldn't find any libvlc.cs like Odysee's
i'm running windows 7, visual studio 2008 c#, windows media encoder 9 for streaming