媒体基础:将第三方解码器 dll 添加到拓扑中
我是 Microsoft Media Foundation 的新手。我正在运行 MSDN 中找到的示例播放代码。现在,我想将第三方解码器的 MFT 添加到拓扑中。这可能吗?
预先感谢,
斯里
I am new to Microsoft Media Foundation. I am running a sample playback code found in MSDN. Now, I want to add a MFT for a third party decoder to the topology. Is this possible ?
Thanks in advance,
Sri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。这是可能的。请查看您的 SDK 安装目录。转到 Microsoft SDK -> v7.0->样品->多媒体->媒体基金会 ->解码器 它包含一个示例 MPEG-1 解码器,它会给您一个想法。
Yes. It is possible. Please look in your SDK installation directory. Go to
Microsoft SDKs -> v7.0 -> Samples -> Multimedia -> Mediafoundation -> Decoder
it contains a sample MPEG-1 decoder, which will give you an idea.根据解码器示例,我们可以实现自己的解码器mft,但是有一个关于第三方MFT的问题。
我添加了amr编解码器MFT,并使用topoedit(windows examplecode)进行调试,可以正常播放。但如果我运行 Windows Media Player,它不会播放包含 amr 编解码器的文件。我想除了注册 amr_mft.dll 之外我还需要做一些其他的事情。
According the decoder sample, we can realize ourself decoder mft,but there are one question about third_party MFT.
I add a amr codec MFT, and debug with topoedit(windows samplecode), it can play normally. but if I run windows media player, it donot play the file include amr codec. I think I need do something else besides register amr_mft.dll.