2018-09-12 10:26:21 -07:00
|
|
|
|
<div id="encodingSettingsPage" data-role="page" class="page type-interior playbackConfigurationPage" data-require="scripts/encodingsettings,emby-input,emby-checkbox,emby-button,emby-select">
|
2014-01-07 11:39:35 -07:00
|
|
|
|
|
2017-05-06 12:42:17 -07:00
|
|
|
|
<div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<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
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<div class="verticalSection">
|
|
|
|
|
<div class="sectionTitleContainer flex align-items-center">
|
|
|
|
|
<h2 class="sectionTitle">${TabTranscoding}</h2>
|
|
|
|
|
<a is="emby-linkbutton" class="raised button-alt headerHelpButton" target="_blank" href="https://github.com/MediaBrowser/Wiki/wiki/Transcoding">${Help}</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2016-06-19 22:23:06 -07:00
|
|
|
|
<div class="selectContainer">
|
|
|
|
|
<select is="emby-select" id="selectVideoDecoder" label="${LabelHardwareAccelerationType}">
|
|
|
|
|
<option value="">${OptionNone}</option>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<option value="amf">AMD AMF (experimental)</option>
|
2016-08-05 21:38:01 -07:00
|
|
|
|
<option value="qsv">Intel Quick Sync (experimental)</option>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<option value="mediacodec">MediaCodec Android (experimental)</option>
|
2017-09-15 10:57:42 -07:00
|
|
|
|
<option value="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>
|
2017-09-10 13:41:58 -07:00
|
|
|
|
<option value="h264_v4l2m2m">Exynos V4L2 MFC Encoder (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>
|
2017-06-12 00:11:54 -07:00
|
|
|
|
|
2017-08-12 12:09:13 -07:00
|
|
|
|
<div class="hardwareAccelerationOptions hide">
|
|
|
|
|
<div class="checkboxListContainer decodingCodecsList">
|
|
|
|
|
<h3 class="checkboxListLabel">${LabelEnableHardwareDecodingFor}</h3>
|
|
|
|
|
<div class="checkboxList">
|
|
|
|
|
<label>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="h264" data-types="qsv,nvenc,omx,mediacodec" />
|
2017-08-12 12:09:13 -07:00
|
|
|
|
<span>H264</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="hevc" data-types="qsv,nvenc,mediacodec" />
|
2017-08-12 12:09:13 -07:00
|
|
|
|
<span>HEVC</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="mpeg2video" data-types="qsv,nvenc,omx,mediacodec" />
|
2017-08-12 12:09:13 -07:00
|
|
|
|
<span>MPEG2</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="mpeg4" data-types="nvenc,mediacodec" />
|
2017-08-13 11:05:46 -07:00
|
|
|
|
<span>MPEG4</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="vc1" data-types="qsv,nvenc" />
|
2017-08-12 12:09:13 -07:00
|
|
|
|
<span>VC1</span>
|
|
|
|
|
</label>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="vp8" data-types="mediacodec" />
|
|
|
|
|
<span>VP8</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" is="emby-checkbox" class="chkDecodeCodec" data-codec="vp9" data-types="mediacodec" />
|
|
|
|
|
<span>VP9</span>
|
|
|
|
|
</label>
|
2017-08-12 12:09:13 -07:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="checkboxListContainer">
|
|
|
|
|
<div class="checkboxList">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" is="emby-checkbox" id="chkHardwareEncoding" />
|
|
|
|
|
<span>${EnableHardwareEncoding}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2017-06-12 00:11:54 -07:00
|
|
|
|
</div>
|
|
|
|
|
</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-06-28 22:49:31 -07:00
|
|
|
|
|
2017-09-15 13:05:40 -07:00
|
|
|
|
<div class="inputContainer fldEncoderPath hide">
|
2016-06-19 23:19:28 -07:00
|
|
|
|
<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>
|
2017-09-14 11:50:29 -07:00
|
|
|
|
<button type="button" is="paper-icon-button-light" id="btnSelectEncoderPath" class="emby-input-iconbutton"><i class="md-icon">search</i></button>
|
2016-06-19 23:19:28 -07:00
|
|
|
|
</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>
|
2017-09-14 11:50:29 -07:00
|
|
|
|
<button type="button" is="paper-icon-button-light" id="btnSelectTranscodingTempPath" class="emby-input-iconbutton"><i class="md-icon">search</i></button>
|
2016-06-19 22:23:06 -07:00
|
|
|
|
</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>
|
2017-09-16 23:42:23 -07:00
|
|
|
|
|
2017-08-23 13:12:27 -07:00
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkEnableSubtitleExtraction" />
|
|
|
|
|
<span>${AllowOnTheFlySubtitleExtraction}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${AllowOnTheFlySubtitleExtractionHelp}</div>
|
|
|
|
|
</div>
|
2016-09-04 08:01:31 -07:00
|
|
|
|
|
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>
|