mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-17 08:36:42 +00:00
Updated video defaults to be 720p, 60fps, 10Mbps
This commit is contained in:
parent
97fc2d4fa8
commit
6b97487148
@ -37,9 +37,9 @@
|
|||||||
<option value="30">30fps</option>
|
<option value="30">30fps</option>
|
||||||
<option value="60">60fps</option>
|
<option value="60">60fps</option>
|
||||||
</select>
|
</select>
|
||||||
<output id='bitrateField'>5 Mbps</output>
|
<output id='bitrateField'>10 Mbps</output>
|
||||||
</div>
|
</div>
|
||||||
<input id="bitrateSlider" class="mdl-slider mdl-js-slider" type="range" min="0" max="100" step="0.5" value="5">
|
<input id="bitrateSlider" class="mdl-slider mdl-js-slider" type="range" min="0" max="100" step="0.5" value="10">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hostSettings">
|
<div id="hostSettings">
|
||||||
|
@ -452,7 +452,7 @@ function onWindowLoad(){
|
|||||||
});
|
});
|
||||||
// load stored framerate prefs
|
// load stored framerate prefs
|
||||||
chrome.storage.sync.get('frameRate', function(previousValue) {
|
chrome.storage.sync.get('frameRate', function(previousValue) {
|
||||||
$('#selectFramerate').val(previousValue.frameRate != null ? previousValue.frameRate : '30');
|
$('#selectFramerate').val(previousValue.frameRate != null ? previousValue.frameRate : '60');
|
||||||
});
|
});
|
||||||
// load previously connected hosts
|
// load previously connected hosts
|
||||||
chrome.storage.sync.get('hosts', function(previousValue) {
|
chrome.storage.sync.get('hosts', function(previousValue) {
|
||||||
@ -466,7 +466,7 @@ function onWindowLoad(){
|
|||||||
});
|
});
|
||||||
// load stored bitrate prefs
|
// load stored bitrate prefs
|
||||||
chrome.storage.sync.get('bitrate', function(previousValue) {
|
chrome.storage.sync.get('bitrate', function(previousValue) {
|
||||||
$('#bitrateSlider')[0].MaterialSlider.change(previousValue.bitrate != null ? previousValue.bitrate : '5');
|
$('#bitrateSlider')[0].MaterialSlider.change(previousValue.bitrate != null ? previousValue.bitrate : '10');
|
||||||
updateBitrateField();
|
updateBitrateField();
|
||||||
});
|
});
|
||||||
// load the HTTP cert if we have one.
|
// load the HTTP cert if we have one.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user