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

update dialogs

This commit is contained in:
Luke Pulverenti 2016-09-07 13:17:26 -04:00
parent 4ffca7a9df
commit ab738fae14
21 changed files with 95 additions and 70 deletions

View file

@ -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;
}