Skip to content

Commit 42a05da

Browse files
committed
Update docs
1 parent f6e6551 commit 42a05da

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

docs/src/docs/file-size.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ auto-editor my-video.mp4 -b:v 230k
1818
Examples:
1919
```
2020
auto-editor my-huge-h264-video.mp4 -b:v 10M # Maximum quality, big file size
21-
auto-editor my-h264-video.mp4 -b:v unset # Let ffmpeg chose, efficient and good looking quality
21+
auto-editor my-h264-video.mp4 -b:v auto # Let ffmpeg chose, efficient and good looking quality
2222
auto-editor i-want-this-tiny.mp4 -b:v 125k # Set bitrate to 125 kilobytes, quality may vary
2323
auto-editor my-mpeg4-video.mp4 -c:v h264 -b:v auto
2424
```
@@ -32,11 +32,6 @@ Use Constant Rate Factor (CRF) unless you already know exactly what you want the
3232

3333
If you do use video bitrate, don't set it to a high number like `10M`, it will do what you say, not what you want. libx264 with faithfully target that absurd number even if the quality gain is teeny-tiny.
3434

35-
Recommended options:
36-
```
37-
auto-editor my-video.mp4 --my-ffmpeg -c:v libx264 -b:v unset --extras "-preset slow -crf 22"
38-
```
39-
4035
[FFmpeg's wiki page explains the options you can use in more detail.](https://trac.ffmpeg.org/wiki/Encode/H.264)
4136

4237

@@ -47,5 +42,5 @@ Due to copyright and patent law affecting software makers, auto-editor does not
4742

4843
Example:
4944
```
50-
auto-editor my-video.mp4 --my-ffmpeg -c:v hevc -b:v unset
45+
auto-editor my-video.mp4 --my-ffmpeg -c:v hevc -b:v auto
5146
```

0 commit comments

Comments
 (0)