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

H264 52 Level available but not detected

This commit is contained in:
Jellifi007 2021-10-26 20:40:51 +02:00
parent aa418cbf41
commit ecdb90f3c7

View file

@ -749,7 +749,8 @@ import browser from './browser';
}
// Support H264 Level 52 (Tizen 5.0) - app only
if (browser.tizenVersion >= 5 && window.NativeShell) {
if ((browser.tizenVersion >= 5 && window.NativeShell) ||
videoTestElement.canPlayType('video/mp4; codecs="avc1.640834"').replace(/no/, '')) {
maxH264Level = 52;
}