Tag Archives: avconv

How to cut videos from the command line in Ubuntu 12.10 and later (Mint 14 and later)

avconv -i DP4U12.ogv -vcodec copy -acodec copy -ss 00:00:00 -t 00:04:20 DP4U12_complete.ogv The above command preserves the same format of the input file, where: DP4U12.ogv is the input file DP4U12_complete.ogv is the output file The command cuts the video from … Continue reading

Posted in Uncategorized | Tagged , , , , , | 1 Comment