hi
i want to stream byte video from file in vlc(i am using wpf)
i used
- <Vlc:VlcControl xmlns:Vlc="clr-namespace:Vlc.DotNet.Wpf;assembly=Vlc.DotNet.Wpf" x:Name="vlcPlayer" Margin="126,61,125.6,88" />
and
- var currentAssembly = Assembly.GetEntryAssembly();
- var currentDirectory = new FileInfo(currentAssembly.Location).DirectoryName;
-
- var libDirectory = new DirectoryInfo(System.IO.Path.Combine(currentDirectory, "libvlc", IntPtr.Size == 4 ? "win-x86" : "win-x64"));
- vlcPlayer.SourceProvider.CreatePlayer(libDirectory);
- vlcPlayer.SourceProvider.MediaPlayer.Play(new Uri("http://79.170.191.118:1935/formula55_2/stream55_2/playlist.m3u8"));
which nothing happening and i dont know how to path my video name
any help