之间有什么区别
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"
答案 0 :(得分:1)
来自https://ffmpeg.org/ffmpeg.html的文档:
-ss position(输入/输出)
当用作输入选项(在-i之前)时,在此输入文件中搜索到 位置。 [...]当用作输出选项时(在输出URL之前), 解码但丢弃输入,直到时间戳到达位置。
和
-t持续时间(输入/输出)
当用作输入选项(在-i之前)时,限制数据的持续时间 从输入文件中读取。当用作输出选项时(在...之前) 输出url),在持续时间到达后停止写入输出 持续时间。