diff --git a/src/ui/Forms/GenerateVideoWithHardSubs.Designer.cs b/src/ui/Forms/GenerateVideoWithHardSubs.Designer.cs index 86156ca8f..d05a05352 100644 --- a/src/ui/Forms/GenerateVideoWithHardSubs.Designer.cs +++ b/src/ui/Forms/GenerateVideoWithHardSubs.Designer.cs @@ -463,7 +463,6 @@ namespace Nikse.SubtitleEdit.Forms this.comboBoxVideoEncoding.FormattingEnabled = true; this.comboBoxVideoEncoding.Items.AddRange(new object[] { "libx264", - "libx264rgb", "libx265", "libvpx-vp9"}); this.comboBoxVideoEncoding.Location = new System.Drawing.Point(101, 58); diff --git a/src/ui/Forms/GenerateVideoWithHardSubs.cs b/src/ui/Forms/GenerateVideoWithHardSubs.cs index 504e4943d..c71544616 100644 --- a/src/ui/Forms/GenerateVideoWithHardSubs.cs +++ b/src/ui/Forms/GenerateVideoWithHardSubs.cs @@ -636,6 +636,11 @@ namespace Nikse.SubtitleEdit.Forms comboBoxCrf.Items.Add(i.ToString(CultureInfo.InvariantCulture)); } + comboBoxTune.Items.Clear(); + comboBoxTune.Items.Add(string.Empty); + comboBoxTune.Items.Add("animation"); + comboBoxTune.Items.Add("grain"); + comboBoxCrf.Text = "28"; } else if (comboBoxVideoEncoding.Text == "libvpx-vp9") @@ -657,6 +662,13 @@ namespace Nikse.SubtitleEdit.Forms comboBoxCrf.Items.Add(i.ToString(CultureInfo.InvariantCulture)); } + comboBoxTune.Items.Clear(); + comboBoxTune.Items.Add(string.Empty); + comboBoxTune.Items.Add("film"); + comboBoxTune.Items.Add("animation"); + comboBoxTune.Items.Add("grain"); + + comboBoxCrf.Text = "23"; } comboBoxCrf.EndUpdate();