如何使用 flvmeta 执行相同的 af flvtool2 -U 操作?

发布于 2024-09-28 17:45:14 字数 240 浏览 10 评论 0原文

我们目前使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红焚 2024-10-05 17:45:14

使用FLVmeta 1.0.x(最后一个版本是1.0.11),您必须使用以下命令行:

flvmeta input_file.flv output_file.flv

使用FLVmeta 1.1(最后一个版本是1.1.0),确实应该使用它而不是旧的1.0版本,您可以使用以下任意命令行:

flvmeta input_file.flv output_file.flv
flvmeta --update input_file.flv
flvmeta -U input_file.flv
flvmeta -U -m input_file.flv (will display injected metadata)

每个调用都将使用计算的元数据(包括关键帧信息)更新 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:

flvmeta input_file.flv output_file.flv

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:

flvmeta input_file.flv output_file.flv
flvmeta --update input_file.flv
flvmeta -U input_file.flv
flvmeta -U -m input_file.flv (will display injected metadata)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文