mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
vid burn - remove tune for "film" for x265
This commit is contained in:
parent
ad9b73ab74
commit
30c7589462
@ -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);
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user