如何更改 Directshow 过滤器属性 C++

2021-12-22 00:00:00 visual-c++ directshow c++

如何以编程方式更改过滤器属性?

How to change Filter Properties programmatically?

我正在使用过滤器 AAC 编码器,我可以在 graphedit 中通过右键单击过滤器并输入比特率值.

I am using a filter AAC encoder, and I can manually change its bitrate in graphedit by right clicking on the filter and entering the bitrate value.

是否可以通过代码来做同样的事情?

Is it possible to do the same through code?

请给我宝贵的建议,如果可能,请提供代码.

Please give me valuable suggestions and if possible with code.

推荐答案

您可以通过特定于过滤器的私有接口执行此操作.您需要参考过滤器文档或 SDK 以获取详细信息(VSS 技术支持).有时可以从类型库中获取必要的信息.

You do this via private filter-specific interface. You need to refer to filter documentation or SDK to get details on this (VSS Tech Support). Sometimes you can obtain the necessary information from type library.

见:

  • 远程控制过滤器中的变量
  • 没有属性页,如何我可以通过代码输入值吗?
  • 定义机制在 MSDN 上设置属性

相关文章