我发现WpfMediaKit似乎是<MediaElement>
的一个很好的替代品。但是,我似乎无法让它发挥作用。
在Visual Studio中,我创建了一个新的WPF项目,然后我下载了NuGet package。我添加xmlns
和一个播放器元素,并为元素分配一个源并启动应用程序......但没有任何反应。没有显示任何内容,没有错误。
<Window x:Class="MainApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MainApp"
xmlns:wpfmediakit="clr-namespace:WPFMediaKit.DirectShow.Controls;assembly=WPFMediaKit"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<wpfmediakit:MediaUriElement Source="https://domain/path/video.mp4" />
</Grid>
</Window>
下载文件并使用本地副本,通过将来源更改为file://C:/Temp/File.mp4
,对我们有所帮助。
我觉得我必须遗漏一些必要的东西,但是什么?
答案 0 :(得分:5)
它也发生在我身上,问题是我没有安装编解码器,我认为最好的免费编解码器是Klite只需下载和安装,一切都会正常工作
答案 1 :(得分:1)
操作系统版本:Win7,Win10?
某些视频类型文件无法在Win7中使用默认编解码器。
c#
FilterGraphTools.SaveGraphFile(filterGraph, System.IO.Path.Combine(GraphFileSaveFolderPath, $"Graph{Guid.NewGuid():N}.grf"));