mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update dialogs
This commit is contained in:
parent
4ffca7a9df
commit
ab738fae14
21 changed files with 95 additions and 70 deletions
|
@ -6,6 +6,11 @@ define(['browser'], function (browser) {
|
|||
}
|
||||
|
||||
function canPlayH265() {
|
||||
|
||||
if (browser.tizen) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -193,8 +198,12 @@ define(['browser'], function (browser) {
|
|||
|
||||
function getMaxBitrate() {
|
||||
|
||||
if (browser.edgeUwp) {
|
||||
return 14000000;
|
||||
}
|
||||
|
||||
// 10mbps
|
||||
if (browser.xboxOne || browser.edgeUwp) {
|
||||
if (browser.xboxOne) {
|
||||
return 10000000;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue