We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ede72d3 commit 1476259Copy full SHA for 1476259
1 file changed
src/quality/quality.js
@@ -28,17 +28,17 @@ Object.assign(mejs.MepDefaults, {
28
// Return it as named qualities
29
const height = level.height
30
if (height >= 4320) {
31
- return "8K UHD";
+ return "8K UHD";
32
} else if (height >= 2160) {
33
- return "UHD";
+ return "UHD";
34
} else if (height >= 1440) {
35
- return "QHD";
+ return "QHD";
36
} else if (height >= 1080) {
37
- return "FHD";
+ return "FHD";
38
} else if (height >= 720) {
39
- return "HD";
+ return "HD";
40
} else {
41
- return "SD";
+ return "SD";
42
}
43
44
// return it as 1080p, 720p etc.
0 commit comments