2014-01-07 13:39:35 -05:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Advanced</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="encodingSettingsPage" data-role="page" class="page type-interior advancedConfigurationPage">
|
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
<div class="content-primary">
|
|
|
|
|
|
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
|
|
|
<a href="advanced.html" data-role="button">General</a>
|
2014-01-07 15:12:39 -05:00
|
|
|
|
<a href="#" data-role="button" class="ui-btn-active">Transcoding</a>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form class="encodingSettingsForm">
|
|
|
|
|
|
|
|
|
|
<fieldset data-role="controlgroup">
|
2014-01-10 08:52:01 -05:00
|
|
|
|
<legend>Transcoding Quality Preference:</legend>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
<input type="radio" name="radioEncodingQuality" class="radioEncodingQuality" id="radioAuto" value="Auto">
|
2014-01-08 00:25:21 -05:00
|
|
|
|
<label for="radioAuto">Auto<br /><span style="font-weight:normal;">The server will decide quality and speed</span></label>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
<input type="radio" name="radioEncodingQuality" class="radioEncodingQuality" id="radioHighSpeed" value="HighSpeed">
|
2014-01-10 08:52:01 -05:00
|
|
|
|
<label for="radioHighSpeed">Higher speed<br /><span style="font-weight:normal;">Lower quality, but faster encoding</span></label>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
<input type="radio" name="radioEncodingQuality" class="radioEncodingQuality" id="radioHighQuality" value="HighQuality">
|
2014-01-10 08:52:01 -05:00
|
|
|
|
<label for="radioHighQuality">Higher quality<br /><span style="font-weight:normal;">Higher quality, but slower encoding</span></label>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
<input type="radio" name="radioEncodingQuality" class="radioEncodingQuality" id="radioMaxQuality" value="MaxQuality">
|
2014-01-10 08:52:01 -05:00
|
|
|
|
<label for="radioMaxQuality">Max quality<br /><span style="font-weight:normal;">Best quality with slower encoding and high CPU usage</span></label>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
|
|
|
<li>
|
|
|
|
|
<input type="checkbox" id="chkEnableDebugEncodingLogging" name="chkEnableDebugEncodingLogging" data-mini="true" />
|
2014-01-07 15:12:39 -05:00
|
|
|
|
<label for="chkEnableDebugEncodingLogging">Enable debug transcoding logging</label>
|
2014-01-07 13:39:35 -05:00
|
|
|
|
<div class="fieldDescription">This will create very large log files and is only recommended as needed for troubleshooting purposes.</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
|
|
|
Save
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
|
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.encodingSettingsForm').off('submit', EncodingSettingsPage.onSubmit).on('submit', EncodingSettingsPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|