We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32feb84 commit 1586224Copy full SHA for 1586224
src/ffmpeg-notes.md
@@ -67,7 +67,7 @@ ffmpeg -decoders
67
### Basic H265
68
69
```bash
70
-ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -c:a copy output.mp4
+ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -movflags +faststart -c:a copy output.mp4
71
```
72
73
#### Asher's command
@@ -76,6 +76,12 @@ ffmpeg -i input.mp4 -map 0 -c:v libx265 -crf 28 -c:a copy output.mp4
76
ffmpeg -i "input.mkv" -c:v libx265 -preset slow -vf "fps=30, scale='min(1920,iw)':-2" -movflags +faststart -c:a aac "output.mp4"
77
78
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
85
### Basic SVT-AV1
86
87
#### Important options
0 commit comments