mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-12 19:32:23 +00:00
Fixes for nvenc support marked as experimental, since more testing should be done on options
This commit is contained in:
parent
3f5277e67e
commit
ffd3101ac6
4 changed files with 16 additions and 16 deletions
|
|
@ -562,9 +562,9 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
return "h264_qsv";
|
||||
}
|
||||
|
||||
if (string.Equals(options.HardwareAccelerationType, "libnvenc", StringComparison.OrdinalIgnoreCase))
|
||||
if (string.Equals(options.HardwareAccelerationType, "nvenc", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "libnvenc";
|
||||
return "h264_nvenc";
|
||||
}
|
||||
if (string.Equals(options.HardwareAccelerationType, "h264_omx", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue