我知道这很容易,但我不能让它发挥作用。
我将视频文件(.wmv)添加到我的项目中,并尝试使用媒体元素播放它。但我总是有一个错误:MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED : HRESULT - 0x80004005
以下是代码:
<Page
x:Class="MyMobileApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyMobileApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<MediaElement x:Name="MyMediaElement" Height="640" Width="400" Source="GOPR0179.wmv" MediaFailed="MediaElement_MediaFailed"/>
</Grid>
</Page>
你能帮帮我吗?
这是背后的代码:
private void MediaElement_MediaFailed(object sender, ExceptionRoutedEventArgs e)
{
System.Diagnostics.Debug.WriteLine(e.ErrorMessage);
}