Skip to content

Commit

Permalink
doc: update ffmpeg.md (#18).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Nov 2, 2022
1 parent 75a0acf commit 05be647
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion docs/ffmpeg.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,38 @@ FFmpeg 备忘清单

本备忘清单是 [FFmpeg](https://ffmpeg.org/) 中常见视频处理操作的备忘清单

参数参考
FFmpeg 参考
---

### 安装

Linux

```
$ apt-get install ffmpeg
$ yum install ffmpeg
```

MacOS

```bash
$ brew install ffmpeg
```

### 示例

mp4 转 avi:

```bash
$ ffmpeg -i input.mp4 output.avi
```

webm 转 mp4:

```bash
$ ffmpeg -i movie.webm movie.mp4
```

### 常用开关

```bash
Expand Down

0 comments on commit 05be647

Please sign in to comment.