gpt4 book ai didi

command-line - ffmpeg 部分转码使用 -ss 和 -to

转载 作者:行者123 更新时间:2023-12-04 22:51:37 27 4
gpt4 key购买 nike

我正在尝试使用 ffmpeg 实现部分转码。
我目前使用的命令是:

ffmpeg.exe -ss start-time -i source file -t duration -y -s 640x360 -b:v 1024k -vcodec libx264 -r 29.7 -movflags faststart -pix_fmt yuv420p outputfile



在 ffmpeg 文档中,我读到了 -to 参数:

-to position (output) Stop writing the output at position. position may be a number in seconds, or in hh:mm:ss[.xxx] form.

-to and -t are mutually exclusive and -t has priority.



但是当我尝试 -至代替 "-t",输出是相同的,我的意思是 -to 之后的值被视为输出视频的持续时间。我认为它会将值(value)视为结束时间。我错过了什么吗?

最佳答案

来自 FFmpeg Wiki :

Note that if you specify -ss before -i only, the timestamps will be reset to zero, so -t and -to have the same effect:

ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy cut.mp4
ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4

Here, the first command will cut from 00:01:00 to 00:03:00 (in the original), whereas the second command would cut from 00:01:00 to 00:02:00, as intended.


所以,确保你把 -ss在输入之后,这样时间戳就不会被重置。

关于command-line - ffmpeg 部分转码使用 -ss 和 -to,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28476190/

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