需要帮助混合视频和文本并保存到另一个文件中
我需要在视频上添加文本、图像,并将混合文件保存到另一个新视频文件中。我了解 DirectShow,但允许播放带有文本的视频,但我不确定如何保存此混合视频以供将来使用。请帮忙。
谢谢, 菲罗兹·汗
I need to add text, image over video and save mixed file into another new video file.I know about DirectShow but will allow to play video with text but i am not sure how i can save this mixed video for future use.Please help.
Thanks,
Firoz Khan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有用于视频压缩和写入文件的 DirectShow 过滤器。我不知道这是否可以直接在 .NET 中使用,但在 C++ 中非常简单。您只需删除渲染过滤器,然后放入压缩过滤器 -->复用滤波器-->文件编写器过滤器。
您可以在 GraphEdit 中尝试一下。您还可以在 DirectShow SDK 中找到有用的 C++ 源代码示例。
There are DirectShow filters for video compression and writing to files. I don't know if this is directly available in .NET, but it's pretty easy in C++. You simply remove rendering filter, and put there compression filer --> multiplexing filter --> file writer filter.
You can try it in GraphEdit. You can also find useful C++ source code examples in DirectShow SDK.