用FFmpeg剪切视频


0

我有一段20分钟的视频,我想最后剪掉前5分钟和5分钟的视频。我必须使用命令,可以帮助我吗?

我在这里用户命令: ffmpeg -ss [start_seconds] -i [input_file] -t [duration_seconds] [outputfile] 。但我认为这是不对的。

说明图像

Answers:


0

要删除前5分钟和最后5分钟,请使用

ffmpeg -ss 300 -t 609 -i input -c copy -avoid_negative_ts make_zero output

根据关键帧的位置,切割点将不准确。如果你跳过了 -c copy,它将转码,这将是一个精确的切割。


我之间只想要视频而且只能使用命令吗?谢谢
M Join

对不起,太快读了Q.纠正。
Gyan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.