截取視頻
ffmpeg -i ./Danny\ MacAskill\ Tests\ Santa\ Cruz\ Reserve\ Carbon\ Wheels-VfjjiHGuHoc.mp4 -vcodec copy -acodec copy -ss 00:00:10 -to 00:00:15 ./aaa.mp4 -y
ffmpeg -i [源文件] 使用原視頻解析 使用原音頻解析 -ss 開始截取時間 -to 結束截取時間 輸入文件格式 -y
剪切視頻
ffmpeg -i input1.mp4 -vcodec copy -acodec copy -ss 00:00:10 -to 00:00:15 ./aaa.mp4 -y
鏈接視頻
ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc output.mp4