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:
parent
83657ace06
commit
954a5cd20f
1 changed files with 3 additions and 0 deletions
|
@ -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++) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue