Added NVENC support for h264/h265

This commit is contained in:
N00MKRAD
2021-01-14 17:46:03 +01:00
parent 1434657457
commit 048aff6093
2 changed files with 21 additions and 4 deletions

View File

@@ -1462,7 +1462,9 @@
this.mp4Enc.FormattingEnabled = true;
this.mp4Enc.Items.AddRange(new object[] {
"h264 - Fast, good compatibility, medium quality per filesize",
"h265 - Slower, mixed compatibility, very good quality per filesize"});
"h265 - Slower, mixed compatibility, very good quality per filesize",
"h264 NVENC - GPU-accelerated encoding, worse compression than h264",
"h265 NVENC - GPU-accelerated encoding, worse compression than h265"});
this.mp4Enc.Location = new System.Drawing.Point(280, 207);
this.mp4Enc.Name = "mp4Enc";
this.mp4Enc.Size = new System.Drawing.Size(400, 21);