Hello Readers,
If you need to cut a video clip from a video, just now you can use FFmpeg application command for the same task to cut a small video clip from a video.
You must copy the image in the bin folder. Then execute this command.
The particular -ss codac becomes the refer the starting time stamp (here starting off time would be the 35th second) along with codac -t tells the overall time period for your video clip. Therefore, codac -t 20 indicates 20 next period. The FFmpeg command is below:
ffmpeg -i videoname.mp4 -ss 00:00:35 -codec copy -t 20 outputclipname.mp4
Therefore you can cut smaller video clip from any video.
Thanks-
0 Comment(s)