在Ubuntu下使用FFmpeg分割视频
Windows下的视频转换工具在分割视频时会对视频进行重新编码,最后得到的视频不仅质量会发生变化,而且还需要耗费不少时间。在Ubuntu软件中心安装ffmpeg后,我们就能通过一段命令来分割视频。ffmpeg -ss 01:00:00 -i input_file_h264.mp4 -vcodec copy -acodec copy -t 00:06:00 output_file.mp4其中-ss 表示分割视频开始时间时间单位为小时:分:秒-i 输入文件in...