From 6b97487148a684faec882981bfded6c83def654d Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Wed, 20 Apr 2016 10:56:46 -0400 Subject: [PATCH] Updated video defaults to be 720p, 60fps, 10Mbps --- index.html | 4 ++-- static/js/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 5040542..322f7ce 100644 --- a/index.html +++ b/index.html @@ -37,9 +37,9 @@ - 5 Mbps + 10 Mbps - +
diff --git a/static/js/index.js b/static/js/index.js index e3a2565..d861549 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -452,7 +452,7 @@ function onWindowLoad(){ }); // load stored framerate prefs 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 chrome.storage.sync.get('hosts', function(previousValue) { @@ -466,7 +466,7 @@ function onWindowLoad(){ }); // load stored bitrate prefs 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(); }); // load the HTTP cert if we have one.