gpt4 book ai didi

batch-file - 如何使用 FFmpeg 进行时间转换

转载 作者:行者123 更新时间:2023-12-04 23:28:26 29 4
gpt4 key购买 nike

我试过提取video.mpg图片使用 FFmpeg命令行,它工作正常,但我想得到转换过程的时间,直到 video.mpg被提取,并保存到 Time.txt .

这是我到目前为止所尝试的:

ffmpeg -i video.mpg image%d.jpg>>time.txt

我哪里错了?

最佳答案

ffmpeg 将进度消息输出到 stderr ,因此要将其重定向到文件,请使用 2>>time.txt :

ffmpeg -i video.mpg image%d.jpg 2>>time.txt

更多信息: http://ss64.com/nt/syntax-redirection.html

附言在批处理文件中 %应该加倍: ffmpeg -i video.mpg image%%d.jpg 2>>time.txt

关于batch-file - 如何使用 FFmpeg 进行时间转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32070803/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com