记录 ffmpeg 控制台信息

发布于 2024-10-20 22:34:02 字数 273 浏览 0 评论 0原文

我刚刚开始使用 ffmpeg 将视频分割成图像。我想知道是否可以将控制台输出信息保存到日志文件中。我尝试过“-v 10”参数,也尝试过“-loglevel”参数。我在另一篇 SO 帖子中看到使用

ffmpeg -i myinput.avi {a-bunch-of-important-params} out.flv 2> /path/to/out.txt

但我收到错误,指出它不知道 txt 格式是什么。我在 Windows 7 SP1 机器上运行它。任何帮助将不胜感激。

谢谢

I have just started using ffmpeg for splitting up a video into images. What I would like to know if it is possible to have the console output information saved out into a log file. I've tried the "-v 10" argument and I've tried the "-loglevel" argument. I've seen on another SO post to use the

ffmpeg -i myinput.avi {a-bunch-of-important-params} out.flv 2> /path/to/out.txt

but I get errors stating that it doesn't know what the txt format is. I am running this on a Windows 7 SP1 machine. Any help would be greatly appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

挽你眉间 2024-10-27 22:34:02

您提供的参数似乎是正确的,但问题可能出在您的 /path/to/out.txt 参数中。如果它包含空格符号,您可能会收到此错误:

无法为 '\out.txt' 找到合适的输出格式

要使其正常工作,只需将其放在双引号中:

ffmpeg -i myinput.avi {a-bunch-of-important-params} out.flv 2> "/path/to/out.txt"

The parameters you provided seems to be correct, but the issue may be in your /path/to/out.txt parameter. In case if it contains a space symbol you'll probably get this error:

Unable to find a suitable output format for '\out.txt'

To make it work just put it in double quotes:

ffmpeg -i myinput.avi {a-bunch-of-important-params} out.flv 2> "/path/to/out.txt"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文