Skip to content

Commit 1586224

Browse files
committed
Add FFMPEG low quality HEVC command
1 parent 32feb84 commit 1586224

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ffmpeg-notes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ffmpeg -decoders
6767
### Basic H265
6868

6969
```bash
70-
ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -c:a copy output.mp4
70+
ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -movflags +faststart -c:a copy output.mp4
7171
```
7272

7373
#### Asher's command
@@ -76,6 +76,12 @@ ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -c:a copy output.mp4
7676
ffmpeg -i "input.mkv" -c:v libx265 -preset slow -vf "fps=30, scale='min(1920,iw)':-2" -movflags +faststart -c:a aac "output.mp4"
7777
```
7878

79+
#### Low quality
80+
81+
```bash
82+
ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 44 -movflags +faststart -c:a copy output.mp4
83+
```
84+
7985
### Basic SVT-AV1
8086

8187
#### Important options

0 commit comments

Comments
 (0)