What tools could I use on Ubuntu 16.04 to cut mp4 files into several clips? - Ask Ubuntu
this question has answer here:
- video editing software options? [closed] 9 answers
i trying cut long video several small pieces. recommended tools can task?
i found ffmpeg task. install ffmpeg sudo apt-get install ffmpeg
copy specific short durationg video file.
ffmpeg -i original.mp4 -ss 00:01:52 -c copy -t 00:00:10 output.mp4
- -i:input file. file name of original video clip.
- -ss:start timestamp. in case tried copy new video original video started after 1 minute , 52 seconds.
-t:indicating duration of new video clip, in case, 10 seconds.
not sure parameter -c for, maybe action? if some1 knows, let me know plz.
reference:
- cut video using ffmpeg
- ffmpeg seeking in subsection [cut small sections]
Comments
Post a Comment