如何在 wpf 中播放 MP4?
How to play MP4 in wpf?
到目前为止我做的最多的就是重现声音,没有图像
<MediaElement Name="myMediaElement" LoadedBehavior="Manual"
Margin="5"
Grid.Row="0"
Grid.Column="0"
ScrubbingEnabled="True"
Source="C:\Users\TheMagicTool Server\Downloads\myVideo.mp4"
/>
视频完全显示了吗?
只是预感,请尝试将 Height="200" Visibility="Visible" 添加到 MediaElement。
<MediaElement Name="myMediaElement" LoadedBehavior="Manual"
Height="200"
Visibility="Visible"
Margin="5"
Grid.Row="0"
Grid.Column="0"
ScrubbingEnabled="True"
Source="C:\Users\TheMagicTool Server\Downloads\myVideo.mp4"
/>
不确定这是否有帮助,但值得一试。应该支持MP4。
到目前为止我做的最多的就是重现声音,没有图像
<MediaElement Name="myMediaElement" LoadedBehavior="Manual"
Margin="5"
Grid.Row="0"
Grid.Column="0"
ScrubbingEnabled="True"
Source="C:\Users\TheMagicTool Server\Downloads\myVideo.mp4"
/>
视频完全显示了吗? 只是预感,请尝试将 Height="200" Visibility="Visible" 添加到 MediaElement。
<MediaElement Name="myMediaElement" LoadedBehavior="Manual"
Height="200"
Visibility="Visible"
Margin="5"
Grid.Row="0"
Grid.Column="0"
ScrubbingEnabled="True"
Source="C:\Users\TheMagicTool Server\Downloads\myVideo.mp4"
/>
不确定这是否有帮助,但值得一试。应该支持MP4。