如何使用 flvmeta 执行相同的 af flvtool2 -U 操作?
我们目前使用 flvtool2 进行 flv 视频处理。我真的不知道它的作用,但我知道我们需要以下命令才能运行。
flvtool2 -U the_movie.flv
我们遇到了大型视频的问题,一直在寻找替代方案,并找到了 flvmeta,但它根本没有记录。我们想使用它,因为它是用 C 语言编写的(在性能上应该击败 ruby),并声称它可以轻松处理大文件。
您知道 flvmeta 中与上述命令等效的命令选项吗?
We are currently using flvtool2 for flv video processing. I don't really know what it does, but i know we need the following command to run.
flvtool2 -U the_movie.flv
We are running into problems with large videos and have been searching for an alternative, and have found flvmeta, however it is not documented at all. We would like to use it, as it's in C (should beat ruby in performance) and claims it can handle large file easily.
Do you know the equivalent command options in flvmeta for the command stated above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用FLVmeta 1.0.x(最后一个版本是1.0.11),您必须使用以下命令行:
使用FLVmeta 1.1(最后一个版本是1.1.0),确实应该使用它而不是旧的1.0版本,您可以使用以下任意命令行:
每个调用都将使用计算的元数据(包括关键帧信息)更新 input_file.flv 文件,就像 flvtool2 一样。
完整的 FLVmeta 手册可在 https://flvmeta.com/flvmeta.1.html。
Using FLVmeta 1.0.x (the last version is 1.0.11) you have to use the following command line:
Using FLVmeta 1.1 (the last version is 1.1.0), which really should be used instead of the older 1.0 versions, you can use any of the following command lines:
Each of these invocations will update the input_file.flv file with computed metadata including keyframe information, just like flvtool2.
The full FLVmeta manual can be found at https://flvmeta.com/flvmeta.1.html.