mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added setting for intel qsv hardware decoding
This commit is contained in:
parent
ec45985eb0
commit
807cbafe55
73 changed files with 741 additions and 658 deletions
|
@ -11,6 +11,7 @@
|
|||
|
||||
}).checkboxradio('refresh');
|
||||
|
||||
$('#selectVideoDecoder', page).val(config.HardwareVideoDecoder);
|
||||
$('#selectThreadCount', page).val(config.EncodingThreadCount);
|
||||
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
|
||||
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
|
||||
|
@ -31,6 +32,7 @@
|
|||
config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val();
|
||||
config.EnableThrottling = $('#chkEnableThrottle', form).checked();
|
||||
config.EncodingThreadCount = $('#selectThreadCount', form).val();
|
||||
config.HardwareVideoDecoder = $('#selectVideoDecoder', form).val();
|
||||
|
||||
ApiClient.updateNamedConfiguration("encoding", config).done(Dashboard.processServerConfigurationUpdateResult);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue