Skip to content

Commit

Permalink
fix default quality with videotoolbox_h264 too low
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Apr 26, 2022
1 parent e0f913d commit 92a6e46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/docks/encodedock.cpp
Expand Up @@ -1258,6 +1258,11 @@ void EncodeDock::resetOptions()
preset.set("f", "mp4");
preset.set("movflags", "+faststart");
preset.set("vcodec", "libx264");
#if defined(Q_OS_MAC) && defined(Q_PROCESSOR_ARM)
if (ui->hwencodeCheckBox->isChecked())
preset.set("crf", "55");
else
#endif
preset.set("crf", "23");
preset.set("preset", "fast");
preset.set("acodec", "aac");
Expand Down

0 comments on commit 92a6e46

Please sign in to comment.