about summary refs log tree commit diff
path: root/content/notes/ffmpeg-cut-video.md
blob: f4934cf66a0674a7be57fba72e726db236f040a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
+++
title = "How to cut videos with ffmpeg"
date = 2024-04-24
categories = ["software", "guide"]
tags = ["ffmpeg"]
+++

To cut video with ffmpeg, use the flag `-ss` for the beginning of the cut and
`-to` for the end of the cut.  For example:

```sh
ffmpeg -i in.mp4 -ss 00:00:02 -to 00:00:14 out.mp4
```