mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #535 - Add 240p video quality to web client
This commit is contained in:
parent
e31b30835c
commit
f17d9b9271
1 changed files with 4 additions and 1 deletions
|
@ -1557,7 +1557,10 @@
|
|||
options.push({ name: '480p', maxWidth: 720, videoBitrate: 420000 });
|
||||
}
|
||||
if (maxAllowedWidth >= 360) {
|
||||
options.push({ name: '360p', maxWidth: 640, videoBitrate: 400000 });
|
||||
options.push({ name: '360p', maxWidth: 640, videoBitrate: 410000 });
|
||||
}
|
||||
if (maxAllowedWidth >= 240) {
|
||||
options.push({ name: '240p', maxWidth: 426, videoBitrate: 400000 });
|
||||
}
|
||||
|
||||
for (var i = 0, length = options.length; i < length; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue