提取字幕轨道
ffmpeg -i "input.mp4" -an -vn -f srt -map 0:s:0 -scodec copy "output.srt"
参数说明:
-an:去除音频
-vn:去除视频
-f:指定格式
-map:指定轨道
-scodec:指定字幕流,等同于“-c:s”
合并视频
新建一个video.txt文件,文件的内容是需要合并的视频名称,内容格式为
file 1.mp4
file 2.mp4
ffmpeg -f concat -i video.txt -c copy concat.mp4
提取音频
ffmpeg -i video.mp4 -vn -c:a copy output.mp3
ffmpeg -i video.mp4 -f mp3 -vn output.mp3
格式转换
ffmpeg -i input.mkv -ss 00:00:00 -to 00:00:00 output.mp4
快速剪切
ffmpeg -i input.mp4 -ss 00:00:00 -to 00:00:00 -c copy output.mp4