1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

treat almost 720p as 720p

This commit is contained in:
Luke Pulverenti 2013-09-19 11:13:09 -04:00
parent eeeb7a75cd
commit ea87ff5300

View file

@ -1562,7 +1562,7 @@
options.push({ name: '1080p', maxWidth: 1920, videoBitrate: 2500000 });
}
if (maxAllowedWidth >= 1280) {
if (maxAllowedWidth >= 1270) {
options.push({ name: '720p+', maxWidth: 1280, videoBitrate: 2000000 });
options.push({ name: '720p', maxWidth: 1280, videoBitrate: 1000000 });
}