Skip to content

Commit

Permalink
doc: update ffmpeg.md (jaywcjlove#18) (jaywcjlove#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Nov 11, 2022
1 parent 2037e0f commit a38f6d8
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions docs/ffmpeg.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,32 +290,35 @@ $ ffmpeg -i file.aac -acodec mp3 -ar 44100 -ab 128000 output.mp3
<!--rehype:className=wrap-text -->

### -map 命令
<!--rehype:wrap-class=col-span-2-->
<!--rehype:wrap-class=col-span-2 row-span-2-->

`-map` 命令用于指定索引文件,以及索引文件中流类型和它的索引
<!--rehype:className=wrap-text -->

----

```bash
-map index:stram_type:stream_index
```

----

:- | -
:- | -
`input_file_index` | 输入的文件索引(从 0 开始)
`stream_type` | 指定文件流的类型(a -> 音频,v -> 视频,s -> 字幕)
`stream_index` | 指定流类型的索引(从 0 开始)

- 将第一个输入文件的第二个音频拷贝到 out.mp3
将第一个输入文件的第二个音频拷贝到 out.mp3

```bash
$ ffmpeg -i input.mp4 -map 0:a:1 -c copy out.mp3
```
```bash
$ ffmpeg -i input.mp4 -map 0:a:1 -c copy out.mp3
```

- 将第一个输入文件的视频流和第二个输入文件的音频流拷贝到 out.mp4
将第一个输入文件的视频流和第二个输入文件的音频流拷贝到 out.mp4

```bash
$ ffmpeg -i i1.mp4 -i i2.mp4 -map 0:v -map 0:a -c copy out.mp4
```
```bash
$ ffmpeg -i i1.mp4 -i i2.mp4 -map 0:v -map 0:a -c copy out.mp4
```

#### 反向 -map 命令
<!--rehype:wrap-class=col-span-2-->
Expand All @@ -324,7 +327,6 @@ $ ffmpeg -i file.aac -acodec mp3 -ar 44100 -ab 128000 output.mp3
<!--rehype:className=wrap-text -->

### 切换容器(转换类型)
<!--rehype:wrap-class=row-span-2-->

将容器从 `MKV` 更改为 `MP4`

Expand Down Expand Up @@ -358,21 +360,21 @@ $ ffmpeg -i input.mov -itsoffset 3 -i input.mov -map 1:v -map 0:a -codec:a copy

### 图片中的视频

如果您有多个编号的图像 image1.jpg、image2.jpg... 像这样从它们创建一个视频

```bash
$ ffmpeg -f image2 -i image%d.jpg video.mp4
```
<!--rehype:className=wrap-text -->

多个编号的图像 image1.jpg、image2.jpg... 像这样从它们创建一个视频

### 将视频拆分为图像

```bash
$ ffmpeg -i video.mp4 image%d.jpg
```

### 录屏
<!--rehype:wrap-class=col-span-2-->
<!--rehype:wrap-class=col-span-2 row-span-2-->

#### 查找所有可用设备

Expand Down

0 comments on commit a38f6d8

Please sign in to comment.