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++) {