video-editing

Cutting the videos based on start and end time using ffmpeg

岁酱吖の 提交于 2019-11-26 07:51:07
问题 I tried to cut the video using the start and end time of the video by using the following command ffmpeg -ss 00:00:03 -t 00:00:08 -i movie.mp4 -acodec copy -vcodec copy -async 1 cut.mp4 By using the above command i want to cut the video from 00:00:03 to 00:00:08 . But it is not cutting the video between those times instead of that it is cutting the video with first 11 seconds. can anyone help me how resolve this? Edit 1: I have tried to cut by using the following command which is suggested by