我希望我的 WPF 应用程序从给定的流中播放视频。尝试谷歌,但没有找到最新Vlc.Dotnet.Wpf
版本的任何工作示例。我已经用 NuGet 安装了最新的包,这是我目前所拥有的:
我的 XAML:
<Vlc:VlcControl xmlns:Vlc="clr-namespace:Vlc.DotNet.Wpf;assembly=Vlc.DotNet.Wpf" x:Name="vlcPlayer" />
C#代码:
vlcPlayer.BeginInit();
vlcPlayer.MediaPlayer.VlcLibDirectory = new DirectoryInfo(@"C:\Program Files (x86)\VideoLAN\VLC\");
vlcPlayer.EndInit();
vlcPlayer.MediaPlayer.Play(new Uri("http://79.170.191.118:1935/formula55_2/stream55_2/playlist.m3u8"));
当我跑步时,什么也没有发生。但是流在 Vlc Player 中运行良好。我在这里有什么选择?
提前致谢。