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

Merge pull request #4797 from Mauroq/release-10.8.z

This commit is contained in:
Bill Thornton 2023-09-29 07:54:50 -04:00 committed by GitHub
commit 1ba6bde32a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -782,10 +782,9 @@ export function canPlaySecondaryAudio(videoTestElement) {
maxH264Level = 52; maxH264Level = 52;
} }
if (browser.tizen || if (videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '')) {
videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '')) {
// These tests are passing in safari, but playback is failing // These tests are passing in safari, but playback is failing
if (!browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile) { if (!browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile && !browser.tizen) {
h264Profiles += '|high 10'; h264Profiles += '|high 10';
} }
} }