ss和t的定位之间的结果差异?

时间:2018-01-10 23:36:54

标签: ffmpeg

之间有什么区别
ffmpeg -y -ss 1 -i "test.MP4" -t 2 -c copy "test2.MP4"

ffmpeg -y -t 2 -i "test.MP4" -ss 1 -c copy "test2.MP4"

ffmpeg -y -ss 1 -t 2 -i "test.MP4" -c copy "test2.MP4"

ffmpeg -y -i "test.MP4" -ss 1 -t 2 -c copy "test2.MP4"

1 个答案:

答案 0 :(得分:1)

来自https://ffmpeg.org/ffmpeg.html的文档:

  

-ss position(输入/输出)

     

当用作输入选项(在-i之前)时,在此输入文件中搜索到   位置。 [...]当用作输出选项时(在输出URL之前),   解码但丢弃输入,直到时间戳到达位置。

  

-t持续时间(输入/输出)

     

当用作输入选项(在-i之前)时,限制数据的持续时间   从输入文件中读取。当用作输出选项时(在...之前)   输出url),在持续时间到达后停止写入输出   持续时间。