Answer the question
In order to leave comments, you need to log in
ffmpeg how to cut video without quality loss?
I am using fmpeg.
Team
ffmpeg -i original_video.mp4 -c copy -ss 00:01:43 -to 00:01:47 cut_1_test.mp4
ffmpeg -i original_video.mp4 -vcodec libx264 -ss 00:01:43 -to 00:01:47 cut_1.mp4
Answer the question
In order to leave comments, you need to log in
move the option -ss
before specifying the input
ffmpeg -ss 00:01:43 -i original_video.mp4 -c copy -t 00:00:04 cut_1_test.mp4
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question