From 954a5cd20f93e2e0ac3c1ff6cb8fba4e497485a5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 28 Aug 2013 10:23:18 -0400 Subject: [PATCH] added 360p video setting --- dashboard-ui/scripts/mediaplayer.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js index 286797888f..c88d08cb00 100644 --- a/dashboard-ui/scripts/mediaplayer.js +++ b/dashboard-ui/scripts/mediaplayer.js @@ -1507,6 +1507,9 @@ if (maxAllowedWidth >= 480) { options.push({ name: '480p', maxWidth: 720, videoBitrate: 400000 }); } + if (maxAllowedWidth >= 360) { + options.push({ name: '360p', maxWidth: 640, videoBitrate: 300000 }); + } for (var i = 0, length = options.length; i < length; i++) {