Skip to content

Commit 92a6e46

Browse files
committed
fix default quality with videotoolbox_h264 too low
1 parent e0f913d commit 92a6e46

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/docks/encodedock.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,6 +1258,11 @@ void EncodeDock::resetOptions()
12581258
preset.set("f", "mp4");
12591259
preset.set("movflags", "+faststart");
12601260
preset.set("vcodec", "libx264");
1261+
#if defined(Q_OS_MAC) && defined(Q_PROCESSOR_ARM)
1262+
if (ui->hwencodeCheckBox->isChecked())
1263+
preset.set("crf", "55");
1264+
else
1265+
#endif
12611266
preset.set("crf", "23");
12621267
preset.set("preset", "fast");
12631268
preset.set("acodec", "aac");

0 commit comments

Comments
 (0)