2016-09-21 14:09:14 -07:00
|
|
|
|
<div id="encodingSettingsPage" data-role="page" class="page type-interior playbackConfigurationPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Transcoding" data-require="scripts/encodingsettings,emby-input,emby-checkbox,emby-button,emby-select">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<form class="encodingSettingsForm">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div class="selectContainer">
|
|
|
|
|
<select is="emby-select" id="selectVideoDecoder" label="${LabelHardwareAccelerationType}">
|
|
|
|
|
<option value="">${OptionNone}</option>
|
2016-08-05 21:38:01 -07:00
|
|
|
|
<option value="qsv">Intel Quick Sync (experimental)</option>
|
2016-07-03 17:42:12 -07:00
|
|
|
|
<option value="h264_omx">OpenMAX OMX (experimental)</option>
|
2016-06-30 14:28:08 -07:00
|
|
|
|
<option value="nvenc">Nvidia NVENC (experimental)</option>
|
2016-08-23 09:31:16 -07:00
|
|
|
|
<option value="vaapi">Video Acceleration API (VA API) (experimental)</option>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
</select>
|
|
|
|
|
<div class="fieldDescription">${LabelHardwareAccelerationTypeHelp}</div>
|
|
|
|
|
</div>
|
2016-08-23 23:13:15 -07:00
|
|
|
|
<div class="inputContainer hide fldVaapiDevice">
|
2016-09-04 08:01:31 -07:00
|
|
|
|
<input is="emby-input" type="text" id="txtVaapiDevice" label="${LabelVaapiDevice}" />
|
2016-08-24 13:14:35 -07:00
|
|
|
|
<div class="fieldDescription">${LabelVaapiDeviceHelp}</div>
|
2016-08-23 23:13:15 -07:00
|
|
|
|
</div>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div class="selectContainer">
|
|
|
|
|
<select is="emby-select" id="selectThreadCount" label="${LabelTranscodingThreadCount}">
|
|
|
|
|
<option value="-1">${OptionAuto}</option>
|
|
|
|
|
<option value="1">1</option>
|
|
|
|
|
<option value="2">2</option>
|
|
|
|
|
<option value="3">3</option>
|
|
|
|
|
<option value="4">4</option>
|
|
|
|
|
<option value="5">5</option>
|
|
|
|
|
<option value="6">6</option>
|
|
|
|
|
<option value="7">7</option>
|
|
|
|
|
<option value="8">8</option>
|
|
|
|
|
<option value="0">${OptionMax}</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div class="fieldDescription">${LabelTranscodingThreadCountHelp}</div>
|
|
|
|
|
</div>
|
2016-08-05 12:34:10 -07:00
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<label>
|
2016-06-30 14:28:08 -07:00
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkEnableThrottle" />
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<span>${OptionEnableTranscodingThrottle}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${OptionEnableTranscodingThrottleHelp}</div>
|
|
|
|
|
</div>
|
2016-06-28 22:49:31 -07:00
|
|
|
|
|
|
|
|
|
<div class="selectContainer fldSelectEncoderPathType hide">
|
|
|
|
|
<select is="emby-select" id="selectEncoderPath" label="${LabelffmpegVersion}">
|
|
|
|
|
<option value="System">${OptionUseSystemInstalledVersion}</option>
|
|
|
|
|
<option value="Custom">${OptionUseMyCustomVersion}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2016-06-19 23:19:28 -07:00
|
|
|
|
<div class="inputContainer fldEncoderPath hide">
|
|
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
|
|
<div style="flex-grow:1;">
|
2016-06-20 10:07:19 -07:00
|
|
|
|
<input is="emby-input" class="txtEncoderPath" label="${LabelffmpegPath}" autocomplete="off" required />
|
2016-06-19 23:19:28 -07:00
|
|
|
|
</div>
|
|
|
|
|
<button type="button" is="paper-icon-button-light" id="btnSelectEncoderPath" class="autoSize"><i class="md-icon">search</i></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="fieldDescription">
|
|
|
|
|
<div>${LabelffmpegPathHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
|
|
<div style="flex-grow:1;">
|
2016-06-19 23:19:28 -07:00
|
|
|
|
<input is="emby-input" id="txtTranscodingTempPath" label="${LabelTranscodingTempPath}" autocomplete="off" />
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<button type="button" is="paper-icon-button-light" id="btnSelectTranscodingTempPath" class="autoSize"><i class="md-icon">search</i></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="fieldDescription">${LabelTranscodingTempPathHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputContainer">
|
2016-06-19 23:19:28 -07:00
|
|
|
|
<input is="emby-input" type="number" id="txtDownMixAudioBoost" pattern="[0-9]*" required="required" min=".5" max="3" step=".1" label="${LabelDownMixAudioScale}" />
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div class="fieldDescription">${LabelDownMixAudioScaleHelp}</div>
|
|
|
|
|
</div>
|
2014-01-11 11:58:50 -07:00
|
|
|
|
|
2016-09-04 08:01:31 -07:00
|
|
|
|
<div class="selectContainer">
|
|
|
|
|
<select is="emby-select" id="selectH264Preset" label="${LabelH264EncodingPreset}">
|
|
|
|
|
<option value="">${OptionAuto}</option>
|
|
|
|
|
<option value="veryslow">veryslow</option>
|
|
|
|
|
<option value="slower">slower</option>
|
|
|
|
|
<option value="slow">slow</option>
|
|
|
|
|
<option value="medium">medium</option>
|
|
|
|
|
<option value="fast">fast</option>
|
|
|
|
|
<option value="faster">faster</option>
|
|
|
|
|
<option value="veryfast">veryfast</option>
|
|
|
|
|
<option value="superfast">superfast</option>
|
|
|
|
|
<option value="ultrafast">ultrafast</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div class="fieldDescription">${H264EncodingPresetHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="number" id="txtH264Crf" pattern="[0-9]*" min="0" max="51" step="1" label="${LabelH264Crf}" />
|
|
|
|
|
<div class="fieldDescription">${H264CrfHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div>
|
2016-09-12 11:10:09 -07:00
|
|
|
|
<button is="emby-button" type="submit" class="raised button-submit block"><span>${ButtonSave}</span></button>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</form>
|
2014-01-07 11:39:35 -07:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-30 14:04:26 -07:00
|
|
|
|
</div>
|