mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Fix nvenc preset ordering
This commit is contained in:
parent
e6313d01eb
commit
0ad70bb699
1 changed files with 3 additions and 3 deletions
|
@ -1459,11 +1459,11 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
param += " -preset p7";
|
||||
break;
|
||||
|
||||
case "slow":
|
||||
case "slower":
|
||||
param += " -preset p6";
|
||||
break;
|
||||
|
||||
case "slower":
|
||||
case "slow":
|
||||
param += " -preset p5";
|
||||
break;
|
||||
|
||||
|
@ -1496,8 +1496,8 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
switch (encodingOptions.EncoderPreset)
|
||||
{
|
||||
case "veryslow":
|
||||
case "slow":
|
||||
case "slower":
|
||||
case "slow":
|
||||
param += " -quality quality";
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue