Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 319 Bytes

2017-11-07-cut_video_with_ffmpeg.md

File metadata and controls

17 lines (11 loc) · 319 Bytes

Cut video with ffmpeg

Category: video Generated on 2017-11-07 source: source

$ ffmpeg -ss 00:00:30.0 -i input.wmv -c copy -t 00:00:10.0 output.wmv
  • -ss: starting point
  • -t: duration

is possible to use -to instead of -t to specify the end time