FFmpeg download


编码转换

ffmpeg -i input.flv output.mp4

视频截取

ffmpeg -ss 00:10:00 -t 00:15:00 -accurate_seek -i input.mp4 -codec copy cut.mp4

视频合成

ffmpeg -i "concat:input1.mp4|input2.mp4|input3.mp4" -c copy output.mp4

视频属性查看

ffmpeg -i input.mp4

抽取音频

ffmpeg -i input.mp4 -vn -y -acodec copy output.aac

抽取视频

ffmpeg -i input.mp4 -vcodec copy –an output.mp4

音视频合成

ffmpeg -i input.mp4 -i input.mp3 -vcodec copy -acodec copy output.mp4