FLVMETA 从 xml 标签文件向 flv 添加提示点
flvtool2 可以做到这一点 用这样一个简单的命令
flvtool2 -APUt tag.xml src.flv 输出.flv 其中标签包含 xml 文件中的提示点数据。
如何使用 flvmeta 来完成此操作?
我在使用 flvtool2 时遇到的问题是时间戳四舍五入。经过多次失败的尝试,在 ruby 中重新编译编辑后的源代码。我遇到过 flvmeta 作为将元数据注入 flv 的工具。据说它更快、更高效。
flvtool2 does this
with a simple command like so
flvtool2 -APUt tags.xml src.flv
output.flv
where tags contains the cuepoint data in a xml file.
How can this be done with flvmeta.
The problem i am facing with flvtool2 the timestamps rounding . after much failed trials to recompile the edited source in ruby. I have come across flvmeta as a tool to inject metadata onto flv.which supposedly is faster and efficient.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,无法使用 flvmeta 注入提示点,因为此类功能尚未实现。
顺便说一下,flvtool2是一个纯ruby工具,不需要编译,修改源文件就可以直接执行。
Right now, it is not possible to inject cuepoints using flvmeta, because such feature has not been implemented yet.
By the way, flvtool2, being a pure ruby tool, does not need to be compiled, it can be executed as-is if you modify the source files.