2016-09-11 14:02:32 -07:00
|
|
|
|
<div id="dlnaProfilePage" data-role="page" class="page type-interior dlnaPage withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Dlna%20profiles" data-require="jQuery,emby-collapse,jqmpopup,scripts/dlnaprofile,emby-button">
|
2014-03-26 12:21:29 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
|
|
|
|
|
<form class="dlnaProfileForm" style="max-width: 650px;">
|
2014-03-26 12:21:29 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>${HeaderProfileInformation}</p>
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" data-mini="true">
|
2017-06-28 12:25:44 -07:00
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioInfo" data-value="tabInfo">${TabInfo}</a>
|
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioDirectPlay" data-value="tabDirectPlayProfiles">${TabDirectPlay}</a>
|
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioTranscoding" data-value="tabTranscodingProfiles">${TabTranscoding}</a>
|
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioContainers" data-value="tabContainerProfiles">${TabContainers}</a>
|
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioCodecs" data-value="tabCodecProfiles">${TabCodecs}</a>
|
|
|
|
|
<a href="#" is="emby-linkbutton" data-role="button" class="radioTabButton" id="radioMediaProfiles" data-value="tabMediaProfiles">${TabResponses}</a>
|
2014-03-26 12:21:29 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<br />
|
|
|
|
|
<div class="tabContent tabInfo">
|
|
|
|
|
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtName" required="required" label="${LabelName}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="selectContainer">
|
|
|
|
|
<select is="emby-select" id="selectUser" label="${LabelUserLibrary}"></select>
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelUserLibraryHelp}</div>
|
|
|
|
|
</div>
|
2014-03-26 13:14:47 -07:00
|
|
|
|
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div>
|
|
|
|
|
<h3 class="checkboxListLabel">${LabelSupportedMediaTypes}</h3>
|
|
|
|
|
<div class="checkboxList paperList checkboxList-paperList">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkAudio" data-value="Audio" class="chkMediaType" />
|
|
|
|
|
<span>${OptionProfileAudio}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkPhoto" data-value="Photo" class="chkMediaType" />
|
|
|
|
|
<span>${OptionProfilePhoto}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkVideo" data-value="Video" class="chkMediaType" />
|
|
|
|
|
<span>${OptionProfileVideo}</span>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-03-27 12:30:21 -07:00
|
|
|
|
<br />
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="number" id="txtMaxAllowedBitrate" pattern="[0-9]*" min="1" label="${LabelMaxStreamingBitrate}" />
|
|
|
|
|
<div class="fieldDescription">${LabelMaxStreamingBitrateHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="number" id="txtMusicStreamingTranscodingBitrate" pattern="[0-9]*" min="1" label="${LabelMusicStreamingTranscodingBitrate}" />
|
|
|
|
|
<div class="fieldDescription">${LabelMusicStreamingTranscodingBitrateHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display:none;">
|
|
|
|
|
<label for="chkIgnoreTranscodeByteRangeRequests">${OptionIgnoreTranscodeByteRangeRequests}</label>
|
|
|
|
|
<input type="checkbox" id="chkIgnoreTranscodeByteRangeRequests" data-mini="true" />
|
|
|
|
|
<div class="fieldDescription">${OptionIgnoreTranscodeByteRangeRequestsHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2016-07-15 12:54:22 -07:00
|
|
|
|
<div is="emby-collapse" title="${HeaderIdentification}">
|
|
|
|
|
<div class="collapseContent">
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<h3>${HeaderIdentificationCriteriaHelp}</h3>
|
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdFriendlyName" label="${LabelFriendlyName}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdManufacturer" label="${LabelManufacturer}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdManufacturerUrl" label="${LabelManufacturerUrl}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdModelName" label="${LabelModelName}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdModelNumber" label="${LabelModelNumber}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdModelDesription" label="${LabelModelDescription}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdModelUrl" label="${LabelModelUrl}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdSerialNumber" label="${LabelSerialNumber}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-10-11 14:33:38 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtIdDeviceDescription" label="${LabelDeviceDescription}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIdentificationFieldHelp}</div>
|
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
|
2014-09-14 16:39:06 -07:00
|
|
|
|
<div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<h2 style="vertical-align:middle;display:inline-block;">${HeaderHttpHeaders}</h2>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<button is="emby-button" type="button" class="raised submit raised-mini btnAddIdentificationHttpHeader" style="margin-left:1em;">
|
2016-07-23 11:43:07 -07:00
|
|
|
|
<i class="md-icon">add</i>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<span>${ButtonNew}</span>
|
2016-06-04 20:50:07 -07:00
|
|
|
|
</button>
|
2014-09-14 16:39:06 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="httpHeaderIdentificationList"></div>
|
2014-09-14 16:39:06 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2016-07-15 12:54:22 -07:00
|
|
|
|
|
|
|
|
|
<div is="emby-collapse" title="${HeaderDisplaySettings}">
|
|
|
|
|
<div class="collapseContent">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<br />
|
2016-10-11 14:33:38 -07:00
|
|
|
|
|
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkRequiresPlainFolders" />
|
|
|
|
|
<span>${OptionPlainStorageFolders}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${OptionPlainStorageFoldersHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkRequiresPlainVideoItems" />
|
|
|
|
|
<span>${OptionPlainVideoItems}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${OptionPlainVideoItemsHelp}</div>
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2014-04-20 18:36:12 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-04-20 18:36:12 -07:00
|
|
|
|
|
2016-07-15 12:54:22 -07:00
|
|
|
|
<div is="emby-collapse" title="${HeaderImageSettings}">
|
|
|
|
|
<div class="collapseContent">
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkEnableAlbumArtInDidl" data-mini="true" />
|
|
|
|
|
<span>${LabelEmbedAlbumArtDidl}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${LabelEmbedAlbumArtDidlHelp}</div>
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
|
|
|
|
<label>
|
|
|
|
|
<input is="emby-checkbox" type="checkbox" id="chkEnableSingleImageLimit" data-mini="true" />
|
|
|
|
|
<span>${LabelEnableSingleImageInDidlLimit}</span>
|
|
|
|
|
</label>
|
|
|
|
|
<div class="fieldDescription checkboxFieldDescription">${LabelEnableSingleImageInDidlLimitHelp}</div>
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input type="text" is="emby-input" id="txtAlbumArtPn" label="${LabelAlbumArtPN}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelAlbumArtHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input type="number" is="emby-input" id="txtAlbumArtMaxWidth" pattern="[0-9]*" min="1" label="${LabelAlbumArtMaxWidth}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelAlbumArtMaxWidthHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input type="number" is="emby-input" id="txtAlbumArtMaxHeight" pattern="[0-9]*" min="1" label="${LabelAlbumArtMaxHeight}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelAlbumArtMaxHeightHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input type="number" is="emby-input" id="txtIconMaxWidth" pattern="[0-9]*" min="1" label="${LabelIconMaxWidth}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIconMaxWidthHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input type="number" is="emby-input" id="txtIconMaxHeight" pattern="[0-9]*" min="1" label="${LabelIconMaxHeight}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelIconMaxHeightHelp}</div>
|
|
|
|
|
</div>
|
2014-04-20 18:36:12 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-04-20 18:36:12 -07:00
|
|
|
|
|
2016-07-15 12:54:22 -07:00
|
|
|
|
<div is="emby-collapse" title="${HeaderServerSettings}">
|
|
|
|
|
<div class="collapseContent">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>${HeaderProfileServerSettingsHelp}</p>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoFriendlyName" label="${LabelFriendlyName}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoManufacturer" label="${LabelManufacturer}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoManufacturerUrl" label="${LabelManufacturerUrl}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoModelName" label="${LabelModelName}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoModelNumber" label="${LabelModelNumber}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoModelDesription" label="${LabelModelDescription}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoModelUrl" label="${LabelModelUrl}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtInfoSerialNumber" label="${LabelSerialNumber}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtProtocolInfo" label="${LabelProtocolInfo}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelProtocolInfoHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtXDlnaCap" label="${LabelXDlnaCap}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelXDlnaCapHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtXDlnaDoc" label="${LabelXDlnaDoc}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelXDlnaDocHelp}</div>
|
|
|
|
|
</div>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<div class="inputContainer">
|
|
|
|
|
<input is="emby-input" type="text" id="txtSonyAggregationFlags" label="${LabelSonyAggregationFlags}" />
|
2016-08-24 22:41:44 -07:00
|
|
|
|
<div class="fieldDescription">${LabelSonyAggregationFlagsHelp}</div>
|
|
|
|
|
</div>
|
2014-04-22 10:25:54 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-03-28 11:17:18 -07:00
|
|
|
|
|
2016-07-15 12:54:22 -07:00
|
|
|
|
<div is="emby-collapse" title="${HeaderSubtitleProfiles}">
|
|
|
|
|
<div class="collapseContent">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>${HeaderSubtitleProfilesHelp}</p>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<button is="emby-button" type="button" class="raised submit raised-mini btnAddSubtitleProfile">
|
|
|
|
|
<i class="md-icon">add</i>
|
|
|
|
|
<span>${ButtonAdd}</span>
|
|
|
|
|
</button>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="subtitleProfileList"></div>
|
|
|
|
|
<br />
|
2014-09-17 18:26:23 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-07-15 12:54:22 -07:00
|
|
|
|
<div is="emby-collapse" title="${HeaderXmlSettings}">
|
|
|
|
|
<div class="collapseContent">
|
2014-09-05 21:21:23 -07:00
|
|
|
|
<div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<h2 style="vertical-align:middle;display:inline-block;">${HeaderXmlDocumentAttributes}</h2>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<button is="emby-button" type="button" class="raised submit raised-mini btnAddXmlDocumentAttribute" style="margin-left:1em;">
|
2016-07-23 11:43:07 -07:00
|
|
|
|
<i class="md-icon">add</i>
|
2017-09-24 13:21:32 -07:00
|
|
|
|
<span>${ButtonAdd}</span>
|
2016-06-04 20:50:07 -07:00
|
|
|
|
</button>
|
2014-09-05 21:21:23 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="xmlDocumentAttributeList"></div>
|
|
|
|
|
<div class="fieldDescription">${XmlDocumentAttributeListHelp}</div>
|
|
|
|
|
<br />
|
2014-09-05 21:21:23 -07:00
|
|
|
|
</div>
|
2014-03-27 12:30:21 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-03-27 12:30:21 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="tabContent tabDirectPlayProfiles">
|
|
|
|
|
<p>${HeaderDirectPlayProfileHelp}</p>
|
|
|
|
|
<button class="btnAddDirectPlayProfile" type="button" data-mini="true" data-icon="plus">${ButtonNew}</button>
|
2014-03-27 12:30:21 -07:00
|
|
|
|
<br />
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="directPlayProfiles"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabContent tabTranscodingProfiles">
|
|
|
|
|
<p>${HeaderTranscodingProfileHelp}</p>
|
|
|
|
|
<button class="btnAddTranscodingProfile" type="button" data-mini="true" data-icon="plus">${ButtonNew}</button>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="transcodingProfiles"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabContent tabContainerProfiles">
|
|
|
|
|
<p>${HeaderContainerProfileHelp}</p>
|
|
|
|
|
<button class="btnAddContainerProfile" type="button" data-mini="true" data-icon="plus">${ButtonNew}</button>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="containerProfiles"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabContent tabCodecProfiles">
|
|
|
|
|
<p>${HeaderCodecProfileHelp}</p>
|
|
|
|
|
<button class="btnAddCodecProfile" type="button" data-mini="true" data-icon="plus">${ButtonNew}</button>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="codecProfiles"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabContent tabMediaProfiles">
|
|
|
|
|
<p>${HeaderResponseProfileHelp}</p>
|
|
|
|
|
<button class="btnAddResponseProfile" type="button" data-mini="true" data-icon="plus">${ButtonNew}</button>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="mediaProfiles"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
2016-07-23 11:43:07 -07:00
|
|
|
|
<div>
|
2016-09-08 23:59:23 -07:00
|
|
|
|
<button is="emby-button" type="submit" class="raised button-submit block">
|
2016-09-17 22:52:10 -07:00
|
|
|
|
<span>${ButtonSave}</span>
|
2016-07-23 11:43:07 -07:00
|
|
|
|
</button>
|
2016-09-08 23:59:23 -07:00
|
|
|
|
<button is="emby-button" type="button" class="button-cancel raised block" onclick="Dashboard.navigate('dlnaprofiles.html');">
|
2016-09-17 22:52:10 -07:00
|
|
|
|
<span>${ButtonCancel}</span>
|
2016-07-23 11:43:07 -07:00
|
|
|
|
</button>
|
2014-03-26 12:21:29 -07:00
|
|
|
|
|
2016-07-23 11:43:07 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</form>
|
2014-03-26 12:21:29 -07:00
|
|
|
|
|
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="popupEditDirectPlayProfile" class="popup">
|
2014-03-28 19:28:02 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderDirectPlayProfile}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="editDirectPlayProfileForm">
|
|
|
|
|
|
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectDirectPlayProfileType">${LabelType}</label>
|
|
|
|
|
<select id="selectDirectPlayProfileType" data-mini="true">
|
|
|
|
|
<option value="Audio">${OptionProfileAudio}</option>
|
|
|
|
|
<option value="Photo">${OptionProfilePhoto}</option>
|
|
|
|
|
<option value="Video">${OptionProfileVideo}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-03-28 19:28:02 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtDirectPlayContainer">${LabelProfileContainer}</label>
|
|
|
|
|
<input type="text" id="txtDirectPlayContainer" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileContainersHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="fldDirectPlayVideoCodec" style="margin: 1em 0;">
|
|
|
|
|
<label for="txtDirectPlayVideoCodec">${LabelProfileVideoCodecs}</label>
|
|
|
|
|
<input type="text" id="txtDirectPlayVideoCodec" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileCodecsHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="fldDirectPlayAudioCodec" style="margin: 1em 0 2em;">
|
|
|
|
|
<label for="txtDirectPlayAudioCodec">${LabelProfileAudioCodecs}</label>
|
|
|
|
|
<input type="text" id="txtDirectPlayAudioCodec" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileCodecsHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2014-03-28 19:28:02 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="transcodingProfilePopup" class="popup">
|
|
|
|
|
|
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderTranscodingProfile}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="transcodingProfileForm" style="min-width: 250px;">
|
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" data-mini="true">
|
|
|
|
|
<input type="radio" name="radioTranscodingTab" class="radioTabButton" id="radioTranscodingBasics" value="tabTranscodingBasics">
|
|
|
|
|
<label for="radioTranscodingBasics">${TabInfo}</label>
|
|
|
|
|
<input type="radio" name="radioTranscodingTab" class="radioTabButton" id="radioTranscodingAdvanced" value="tabTranscodingAdvanced">
|
|
|
|
|
<label for="radioTranscodingAdvanced">${TabAdvanced}</label>
|
|
|
|
|
</div>
|
|
|
|
|
<br />
|
|
|
|
|
<div class="tabContent tabTranscodingBasics" style="display: none;">
|
2014-03-28 19:28:02 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<label for="selectTranscodingProfileType">${LabelType}</label>
|
|
|
|
|
<select id="selectTranscodingProfileType" data-mini="true">
|
2014-05-06 19:28:19 -07:00
|
|
|
|
<option value="Audio">${OptionProfileAudio}</option>
|
|
|
|
|
<option value="Photo">${OptionProfilePhoto}</option>
|
|
|
|
|
<option value="Video">${OptionProfileVideo}</option>
|
2014-03-28 19:28:02 -07:00
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldTranscodingProtocol" style="margin: 1em 0;">
|
|
|
|
|
<label for="selectTranscodingProtocol">${LabelProtocol}</label>
|
|
|
|
|
<select id="selectTranscodingProtocol" data-mini="true">
|
|
|
|
|
<option value="Http">${OptionProtocolHttp}</option>
|
|
|
|
|
<option value="Hls">${OptionProtocolHls}</option>
|
|
|
|
|
</select>
|
2014-03-28 19:28:02 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtTranscodingContainer">${LabelTranscodingContainer}</label>
|
|
|
|
|
<input type="text" id="txtTranscodingContainer" required="required" />
|
2014-03-28 19:28:02 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldTranscodingVideoCodec" style="margin: 1em 0;">
|
|
|
|
|
<label for="txtTranscodingVideoCodec">${LabelTranscodingVideoCodec}</label>
|
|
|
|
|
<input type="text" id="txtTranscodingVideoCodec" />
|
2014-03-28 19:28:02 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldTranscodingAudioCodec" style="margin: 1em 0;">
|
|
|
|
|
<label for="txtTranscodingAudioCodec">${LabelTranscodingAudioCodec}</label>
|
|
|
|
|
<input type="text" id="txtTranscodingAudioCodec" />
|
2014-03-31 21:16:25 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div class="tabContent tabTranscodingAdvanced" style="display: none;">
|
2014-04-02 14:55:19 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldEnableMpegtsM2TsMode" style="margin: 1em 0;">
|
|
|
|
|
<label for="chkEnableMpegtsM2TsMode">${OptionEnableM2tsMode}</label>
|
|
|
|
|
<input type="checkbox" id="chkEnableMpegtsM2TsMode" data-mini="true" />
|
|
|
|
|
<div class="fieldDescription">${OptionEnableM2tsModeHelp}</div>
|
2014-03-31 21:16:25 -07:00
|
|
|
|
</div>
|
2014-04-02 14:55:19 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldEstimateContentLength" style="margin: 1em 0;">
|
|
|
|
|
<label for="chkEstimateContentLength">${OptionEstimateContentLength}</label>
|
|
|
|
|
<input type="checkbox" id="chkEstimateContentLength" data-mini="true" />
|
2014-03-31 21:16:25 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldReportByteRangeRequests" style="margin: 1em 0;">
|
|
|
|
|
<label for="chkReportByteRangeRequests">${OptionReportByteRangeSeekingWhenTranscoding}</label>
|
|
|
|
|
<input type="checkbox" id="chkReportByteRangeRequests" data-mini="true" />
|
|
|
|
|
<div class="fieldDescription">${OptionReportByteRangeSeekingWhenTranscodingHelp}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-03-30 09:49:40 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="containerProfilePopup" class="popup">
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderContainerProfile}</h3>
|
|
|
|
|
</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="containerProfileForm" style="min-width: 250px;">
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>${HeaderContainerProfileHelp}</p>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<!-- <div data-role="controlgroup" data-type="horizontal" data-mini="true">
|
|
|
|
|
<input type="radio" name="radioContainerProfileTab" class="radioTabButton" id="radioContainerProfileInfo" value="tabContainerBasics">
|
|
|
|
|
<label for="radioContainerProfileInfo">${TabInfo}</label>
|
|
|
|
|
<input type="radio" name="radioContainerProfileTab" class="radioTabButton" id="radioContainerProfileConditions" value="tabContainerConditions">
|
|
|
|
|
<label for="radioContainerProfileConditions">Conditions</label>
|
|
|
|
|
</div>-->
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="tabContent tabContainerBasics">
|
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectContainerProfileType">${LabelType}</label>
|
|
|
|
|
<select id="selectContainerProfileType" data-mini="true">
|
|
|
|
|
<option value="Audio">${OptionProfileAudio}</option>
|
|
|
|
|
<option value="Photo">${OptionProfilePhoto}</option>
|
|
|
|
|
<option value="Video">${OptionProfileVideo}</option>
|
|
|
|
|
</select>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtContainerProfileContainer">Containers:</label>
|
|
|
|
|
<input type="text" id="txtContainerProfileContainer" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileContainersHelp}</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="tabContent tabContainerConditions" style="display: none;">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="codecProfilePopup" class="popup">
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderCodecProfile}</h3>
|
|
|
|
|
</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="codecProfileForm" style="min-width: 250px;">
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>${HeaderCodecProfileHelp}</p>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectCodecProfileType">${LabelType}</label>
|
|
|
|
|
<select id="selectCodecProfileType" data-mini="true">
|
|
|
|
|
<option value="Video">${OptionProfileVideo}</option>
|
|
|
|
|
<option value="VideoAudio">${OptionProfileVideoAudio}</option>
|
|
|
|
|
<option value="Audio">${OptionProfileAudio}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtCodecProfileCodec">${LabelProfileCodecs}</label>
|
|
|
|
|
<input type="text" id="txtCodecProfileCodec" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileCodecsHelp}</div>
|
|
|
|
|
</div>
|
2014-04-03 15:50:04 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="responseProfilePopup" class="popup">
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderResponseProfile}</h3>
|
|
|
|
|
</div>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="editResponseProfileForm">
|
|
|
|
|
|
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectResponseProfileType">${LabelType}</label>
|
|
|
|
|
<select id="selectResponseProfileType" data-mini="true">
|
|
|
|
|
<option value="Audio">${OptionProfileAudio}</option>
|
|
|
|
|
<option value="Photo">${OptionProfilePhoto}</option>
|
|
|
|
|
<option value="Video">${OptionProfileVideo}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtResponseProfileContainer">${LabelProfileContainer}</label>
|
|
|
|
|
<input type="text" id="txtResponseProfileContainer" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileContainersHelp}</div>
|
|
|
|
|
</div>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldResponseProfileVideoCodec" style="margin: 1em 0;">
|
|
|
|
|
<label for="txtResponseProfileVideoCodec">${LabelProfileVideoCodecs}</label>
|
|
|
|
|
<input type="text" id="txtResponseProfileVideoCodec" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileCodecsHelp}</div>
|
|
|
|
|
</div>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div id="fldResponseProfileAudioCodec" style="margin: 1em 0 2em;">
|
|
|
|
|
<label for="txtResponseProfileAudioCodec">${LabelProfileAudioCodecs}</label>
|
|
|
|
|
<input type="text" id="txtResponseProfileAudioCodec" />
|
|
|
|
|
<div class="fieldDescription">${LabelProfileCodecsHelp}</div>
|
|
|
|
|
</div>
|
2014-04-07 21:17:18 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-07-17 15:21:35 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="identificationHeaderPopup" class="popup">
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderIdentificationHeader}</h3>
|
|
|
|
|
</div>
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="identificationHeaderForm">
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtIdentificationHeaderName">${LabelName}</label>
|
|
|
|
|
<input type="text" id="txtIdentificationHeaderName" required="required" />
|
|
|
|
|
</div>
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtIdentificationHeaderValue">${LabelValue}</label>
|
|
|
|
|
<input type="text" id="txtIdentificationHeaderValue" required="required" />
|
|
|
|
|
</div>
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectMatchType">${LabelMatchType}</label>
|
|
|
|
|
<select id="selectMatchType" data-mini="true">
|
|
|
|
|
<option value="Equals">${OptionEquals}</option>
|
|
|
|
|
<option value="Regex">${OptionRegex}</option>
|
|
|
|
|
<option value="Substring">${OptionSubstring}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-07-17 15:21:35 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-09-05 21:21:23 -07:00
|
|
|
|
</div>
|
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
|
|
|
|
<div data-role="popup" id="xmlAttributePopup" class="popup">
|
2014-09-05 21:21:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderXmlDocumentAttribute}</h3>
|
|
|
|
|
</div>
|
2014-09-05 21:21:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="xmlAttributeForm">
|
2014-09-05 21:21:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtXmlAttributeName">${LabelName}</label>
|
|
|
|
|
<input type="text" id="txtXmlAttributeName" required="required" />
|
|
|
|
|
</div>
|
2014-09-05 21:21:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtXmlAttributeValue">${LabelValue}</label>
|
|
|
|
|
<input type="text" id="txtXmlAttributeValue" required="required" />
|
|
|
|
|
</div>
|
2014-09-05 21:21:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-03-28 19:28:02 -07:00
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="popup" id="subtitleProfilePopup" class="popup">
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
|
|
|
|
<h3>${HeaderSubtitleProfile}</h3>
|
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div data-role="content">
|
|
|
|
|
<form class="subtitleProfileForm">
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="txtSubtitleProfileFormat">${LabelFormat}</label>
|
|
|
|
|
<input type="text" id="txtSubtitleProfileFormat" required="required" />
|
|
|
|
|
<div class="fieldDescription">${LabelSubtitleFormatHelp}</div>
|
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectSubtitleProfileMethod">${LabelMethod}</label>
|
|
|
|
|
<select id="selectSubtitleProfileMethod" data-mini="true" required="required">
|
|
|
|
|
<option value="Embed">${OptionEmbedSubtitles}</option>
|
|
|
|
|
<option value="External">${OptionExternallyDownloaded}</option>
|
|
|
|
|
<option value="Hls">${OptionHlsSegmentedSubtitles}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<div style="margin: 1em 0;">
|
|
|
|
|
<label for="selectSubtitleProfileDidlMode">${LabelDidlMode}</label>
|
|
|
|
|
<select id="selectSubtitleProfileDidlMode" data-mini="true">
|
|
|
|
|
<option value="">${OptionResElement}</option>
|
|
|
|
|
<option value="CaptionInfoEx">${OptionCaptionInfoExSamsung}</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
|
2016-03-15 22:33:31 -07:00
|
|
|
|
<p>
|
2017-07-30 10:53:49 -07:00
|
|
|
|
<button type="submit" data-icon="check" data-mini="true">
|
2016-03-15 22:33:31 -07:00
|
|
|
|
${ButtonOk}
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2014-09-17 18:26:23 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
|
2014-03-26 12:21:29 -07:00
|
|
|
|
</div>
|
2016-03-15 22:33:31 -07:00
|
|
|
|
</div>
|