添加视频过滤器以直接显示项目
我有一个成功使用 DirectShow 的 C++ 项目。
但它可以打开任何媒体文件(如 mpeg2 或某些 Avi)。
如何开发我的项目以增加支持的格式?
I have a c++ project that use DirectShow successfully.
But it can open any media files (like mpeg2 or some Avi).
How can I develop my project to increase supported formats?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DirectShow 本身是一个不受特定格式限制的框架。为了支持特定的格式或编码,需要安装和注册相应的软件组件(过滤器),并且它们将参与负责加载、解码、编码和保存感兴趣的特定附加格式的媒体管道。
DirectShow itself if a framework which is not constrained to specific formats. For a particular format or encoding to be supported, respective software components (filters) need to be installed and registered and they will participate in media pipelines responsible for loading, decoding, encoding and saving specific additional formats of interest.