Cut Video with FFMPEG

Here is a quick command that you can use to cut a piece of video with FFMPEG.

ffmpeg -sameq -ss [start_seconds] /
-t [duration_seconds] -i [input_file] [outputfile]

Explanation

-ss position

Seek to given time position in seconds. “hh:mm:ss[.xxx]” syntax is also supported.

-t duration

Set the recording time in seconds. “hh:mm:ss[.xxx]” syntax is also supported.

-i filename

input filename

-sameq

Use same video quality as source (implies VBR).

More Information

I have more information about video formats, codecs, and instructions on ripping home video from a DVD camcorder on my Video Formats and Codecs page.

 
video/cut_video_with_ffmpeg.txt · Last modified: 2009/03/17 06:38 by Joel Dare
 
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki