mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add setting to control import of missing episodes
This commit is contained in:
parent
c5c540a90c
commit
6763740078
5 changed files with 33 additions and 10 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.339",
|
||||
"_release": "1.4.339",
|
||||
"version": "1.4.340",
|
||||
"_release": "1.4.340",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.339",
|
||||
"commit": "57c814e242079d68032820513d52174cc1051e32"
|
||||
"tag": "1.4.340",
|
||||
"commit": "4b8e32151954ed117c2847cf2641cb895fa38f41"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -209,7 +209,7 @@ define(['browser'], function (browser) {
|
|||
function getMaxBitrate() {
|
||||
|
||||
if (browser.edgeUwp) {
|
||||
return 32000000;
|
||||
return 40000000;
|
||||
}
|
||||
|
||||
// 10mbps
|
||||
|
@ -267,7 +267,7 @@ define(['browser'], function (browser) {
|
|||
// Only put mp3 first if mkv support is there
|
||||
// Otherwise with HLS and mp3 audio we're seeing some browsers
|
||||
// safari is lying
|
||||
if ((videoTestElement.canPlayType('audio/mp4; codecs="ac-3"').replace(/no/, '') && !browser.safari) || browser.edgeUwp || browser.tizen) {
|
||||
if ((videoTestElement.canPlayType('audio/mp4; codecs="ac-3"').replace(/no/, '') && !browser.safari) || browser.edgeUwp || browser.tizen || browser.web0s) {
|
||||
videoAudioCodecs.push('ac3');
|
||||
|
||||
// This works in edge desktop, but not mobile
|
||||
|
@ -277,6 +277,11 @@ define(['browser'], function (browser) {
|
|||
}
|
||||
}
|
||||
|
||||
if (browser.tizen) {
|
||||
videoAudioCodecs.push('eac3');
|
||||
hlsVideoAudioCodecs.push('eac3');
|
||||
}
|
||||
|
||||
var mp3Added = false;
|
||||
if (canPlayMkv) {
|
||||
if (supportsMp3VideoAudio) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue