ffmpeg 视频剪切与合并,时间不精确的问题

在工作中,需要将长视频对目标片段进行剪辑后测试,我们使用 ffmpeg 命令就可以很容易实现,这里也记录下我们使用过程中遇到的坑,希望对大家也有所帮助。

举个例子:

一、当我们要截取视频文件中 input.mp4 的第100秒到第150秒时,ffmpeg命令行可以这么写:
ffmpeg -ss 100 -to 150 -i input.mp4 -c:v copy output.mp4
# 这里的参数-c:v copy 指的是复用原始视频的编码格式,如果想切换视频编码也可以直接指定,比如-c:v libx264 (使用命令ffmpeg -codecs可以查看编码列表)。
二、另外 -ss 和 -to 后面也可以写成时:分:秒的格式,比如要截取视频00:01:40开始到00:02:30的视频,命令行就可以写成如下:
ffmpeg -ss 00:01:40 -to 00:02:30 -i input.mp4 -c:v copy output.mp4
三、如果先从某个时间点开始,截取之后的多少秒视频,我们可以将 -to参数替换为-t参数,比如我想从视频的00:12:01开始截取之后的60秒视频,命令行就也这么写:
ffmpeg -ss 00:01:40 -t 50 -i input.mp4 -c:v copy output.mp4
# 这里需要注意的是如果你同时使用了-t和-to参数,那么ffmpeg会优先使用-t参数的值,-to参数无效
四、提示:-ss指定起始时间点不准确的问题

这里补充一个我们使用中遇到的坑,就是视频截取时间点不准确的问题,以上命令行在短视频中还能正常使用,但随着我们输入的视频时长越来越长,我们发现截取出来的视频时间点越来越不准确,比如我想从第5分钟截取到第10分钟,结果上面命令行给截出来的是第6分钟到第11分钟的视频。
   后来查阅 man ffmpeg 手册发现,-ss参数有注意事项,其放在-i前和后的效果不一样,是这么介绍-ss参数的:

-ss position (input/output)
           When used as an input option (before "-i"), seeks in this input file to position. Note that in most formats it is not possible to seek exactly, so ffmpeg will seek to the closest seek point before position.  When
           transcoding and -accurate_seek is enabled (the default), this extra segment between the seek point and position will be decoded and discarded. When doing stream copy or when -noaccurate_seek is used, it will be
           preserved.

           When used as an output option (before an output url), decodes but discards input until the timestamps reach position.

           position must be a time duration specification, see the Time duration section in the ffmpeg-utils(1) manual.

当-ss放在-i参数前,其搜索到的时间点是从文件中搜索到的位置是不准确的。当-ss参数在-i参数之后,ffmpeg会将视频重新解码,然后丢弃目标直到指定搜索的时间戳。
   所以以上几条命令,要想在任何输入下拿到更精确的结果,就应该这么写:

ffmpeg -i input.mp4 -ss 100 -to 150 -c:v copy output.mp4 
ffmpeg -i input.mp4 -ss 00:01:40 -to 00:02:30 -c:v copy output.mp4  
ffmpeg -i input.mp4 -ss 00:01:40 -t 50 -c:v copy output.mp4

你可能感兴趣的:(#,图像,ffmpeg,音视频)