[ffmpeg] clip video & audio

来源:互联网 发布:淘宝交易成功数据 编辑:程序博客网 时间:2024/06/08 12:25

get a clip from the whole movie, such as, i just need 20 seconds: from 00:00:30 to 00:00:50

ffmpeg -i input.mkv -acodec copy -vcodec copy -ss 00:00:30 -t 00:00:20 output.mkv


this command will not change the audio and video format (just copy).


0 0
原创粉丝点击