Month: December 2013
-
Trimming video with avconv
—
To remove a section from the start of a video Use the -ss (start seek) option before the -i (input filename) parameter. The following would trim the first 35 seconds from the start of the video.: avconv -ss 35 -i input_filename.MP4 -codec copy output_filename.MP4 Using the -codec copy option means it won’t alter the audio/video streams, and means…