Go to TogaWare.com Home Page. GNU/Linux Desktop Survival Guide
by Graham Williams
Duck Duck Go



CLICK HERE TO VISIT THE UPDATED SURVIVAL GUIDE

Video Cut

20200924 This current section deals with the extraction of time extents of the video. If you are wanting to crop the video image itself throughout a video see Section 96.4.

Using ffmpeg we can extract a segment from a video (-i identifies the input file) from the beginning (-ss says to discard anything before the provided timestamp) of the video to 11 seconds in (-t will stop writing to the output file after the specified duration of the output video) whilst the audio stream is synchronised at the beginning of the output stream to match the timestamp (using -async 1). The following command produces a video of length 11 seconds.

$ ffmpeg -i input.mp4 -ss 00:00:00 -t 00:00:11 -async 1 cut.mp4

Note that if -t is specified prior to -i (the input) then the duration refers to the input video rather than the output video. For the above example it would make no difference since we are not cropping the beginnig of the video.

Using avisplit we can also extract a particular section of an avi file (specified as the -input file) and using -t to specifiy the starting point and the end point (starting at 7 minutes and 20 seconds into the video and stopping at 8 minutes and 20 seconds in, respectively):

$ avisplit -i a.avi -t 0:7:20.0-0:8:20.0


Support further development by purchasing the PDF version of the book.
Other online resources include the Data Science Desktop Survival Guide.
Books available on Amazon include Data Mining with Rattle and Essentials of Data Science.
Popular open source software includes rattle and wajig.
Hosted by Togaware, a pioneer of free and open source software since 1984.
Copyright © Togaware Pty Ltd. Creative Commons ShareAlike V4.