C++ Adobe Premiere 视频过滤器 - 在输出视频帧中打印/绘制/渲染文本
我想为 Adobe Premiere 编写视频过滤器,并且需要将一些文本打印/绘制/渲染到输出视频帧中。
调查 adobe Premiere cs4 sdk 我找不到快速答案 -是否可以?
请提供一些样品!
谢谢!
I want to write video filter for Adobe Premiere, and I need to print/draw/render some text into the output video frame.
Looking into adobe premiere cs4 sdk I couldn't find a quick answer - is it possible?
Please provide some samples!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将尝试实现的一些策略:
UPDATE< /强>
替代文本 http://img413.imageshack.us/img413/6201/adobe.jpg< /a>
工作示例,使用 SDK 中的 Simple_Video_Filter 示例...
在 xFilter(短选择器,VideoHandle theData)函数的开头创建带有文本的位图:
在设置过滤器的中间,而不是
使用
并在函数的末尾清理内存
PS [有一天:)]需要在内存中存储一次位图,而不是每帧每次创建......
Some strategy I will try to implement:
UPDATE
alt text http://img413.imageshack.us/img413/6201/adobe.jpg
Working sample, using Simple_Video_Filter sample from SDK...
at the beginning of xFilter (short selector, VideoHandle theData) function create bitmap with text:
in the middle where filter is set, instead of
use
and in the end of function clean memory
PS [some day :)] need to store bitmap in memory once instead of creating each time per frame...