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

added 360p video setting

This commit is contained in:
Luke Pulverenti 2013-08-28 10:23:18 -04:00
parent 83657ace06
commit 954a5cd20f

View file

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