Need good video cutter , cropper, recommend

Toulalan122

Junior Member
Joined
Oct 23, 2016
Messages
115
Reaction score
20
Hello :)

As the title say's I want to cutt the certain video and I can not find a legit cutter that actually works.
Do you guys have any recommendation on a good video cutter that can do the simple job for me to cut a certain video from 03:00 to 04:00 :)

Thanks!!
 
FFmpeg is still your best friend. It doesn't mess with the quality unless you tell it to.

The command for your example:
Code:
ffmpeg -ss 00:03:00 -i INPUT.mp4 -to 00:01:00 -codec copy OUTPUT.mp4
 
Back
Top