WPF MediaElement,更改解码器
是否可以配置 MediaElement 来更改某些 av 流的解码器?例如,您安装了两种不同的 h264 解码器,一种是免费的,另一种是商业的,您的程序可以只使用免费的一种。
谢谢
Is it possible to configure MediaElement for changing decoder for certain av stream? for example, you've installed two different h264 decoders one is free and another is commercial, your program can just use free one.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法通过 MediaElement 以编程方式执行此操作。它使用 Windows Media Player OCX 控件,而该控件又使用 MediaFoundation 进行解码。有一个应用程序可以让您选择 MediaFoundation 应尝试解码的容器,因此您可以使用 ffdshow 之类的内容覆盖 MediaFoundation。理论上,您可以使用相同的方法,但这将是系统范围内的更改。
You cannot do this programmatically through MediaElement. It uses the Windows Media Player OCX control which in turn is using MediaFoundation to decode. There's an app out there that lets you choose which containers MediaFoundation should attempt to decode, so you can potentially override MediaFoundation with something like ffdshow. Theoretically you could utilize the same methodology but it would be a system-wide change.