From 78278223892676ae205198f900ddb4da421b0f07 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 2 Dec 2020 11:16:28 -0500 Subject: [PATCH] Fix 4Mbps value --- src/components/qualityOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/qualityOptions.js b/src/components/qualityOptions.js index 9a807e24a0..009785d5a6 100644 --- a/src/components/qualityOptions.js +++ b/src/components/qualityOptions.js @@ -41,7 +41,7 @@ export function getVideoQualityOptions(options) { if (maxAllowedWidth >= 1260) { qualityOptions.push({ name: '720p - 8 Mbps', maxHeight: 720, bitrate: 8000000 }); qualityOptions.push({ name: '720p - 6 Mbps', maxHeight: 720, bitrate: 6000000 }); - qualityOptions.push({ name: '720p - 4 Mbps', maxHeight: 720, bitrate: 3000000 }); + qualityOptions.push({ name: '720p - 4 Mbps', maxHeight: 720, bitrate: 4000000 }); } if (maxAllowedWidth >= 620) { qualityOptions.push({ name: '480p - 3 Mbps', maxHeight: 480, bitrate: 3000000 });