1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update qsv encoding

This commit is contained in:
Luke Pulverenti 2015-11-26 23:34:11 -05:00
parent 70ce565e80
commit e4ab3eda42
3 changed files with 6 additions and 6 deletions

View file

@ -20,12 +20,12 @@
<ul data-role="listview" class="ulForm"> <ul data-role="listview" class="ulForm">
<li> <li>
<label for="selectVideoDecoder">${LabelHardwareVideoDecoder}</label> <label for="selectVideoDecoder">${LabelHardwareAccelerationType}</label>
<select id="selectVideoDecoder" data-mini="true"> <select id="selectVideoDecoder" data-mini="true">
<option value="">${OptionAuto}</option> <option value="">${OptionAuto}</option>
<option value="qsv">Intel Quick Sync</option> <option value="qsv">Intel Quick Sync</option>
</select> </select>
<div class="fieldDescription">${LabelHardwareVideoDecoderHelp}</div> <div class="fieldDescription">${LabelHardwareAccelerationTypeHelp}</div>
</li> </li>
<li> <li>
<label for="selectThreadCount">${LabelTranscodingThreadCount}</label> <label for="selectThreadCount">${LabelTranscodingThreadCount}</label>

View file

@ -11,7 +11,7 @@
}).checkboxradio('refresh'); }).checkboxradio('refresh');
$('#selectVideoDecoder', page).val(config.HardwareVideoDecoder); $('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
$('#selectThreadCount', page).val(config.EncodingThreadCount); $('#selectThreadCount', page).val(config.EncodingThreadCount);
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost); $('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || ''); $('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
@ -32,7 +32,7 @@
config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val(); config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val();
config.EnableThrottling = $('#chkEnableThrottle', form).checked(); config.EnableThrottling = $('#chkEnableThrottle', form).checked();
config.EncodingThreadCount = $('#selectThreadCount', form).val(); config.EncodingThreadCount = $('#selectThreadCount', form).val();
config.HardwareVideoDecoder = $('#selectVideoDecoder', form).val(); config.HardwareAccelerationType = $('#selectVideoDecoder', form).val();
ApiClient.updateNamedConfiguration("encoding", config).done(Dashboard.processServerConfigurationUpdateResult); ApiClient.updateNamedConfiguration("encoding", config).done(Dashboard.processServerConfigurationUpdateResult);
}); });

View file

@ -1529,8 +1529,8 @@
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.", "OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:", "LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
"LabelHardwareVideoDecoder": "Hardware video decoder:", "LabelHardwareAccelerationType": "Hardware acceleration:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out", "ButtonSignOut": "Sign out",