diff --git a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js index c50c7aa46b..566d19f137 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js +++ b/dashboard-ui/bower_components/emby-webcomponents/browserdeviceprofile.js @@ -416,6 +416,12 @@ define(['browser'], function (browser) { ] }); + var maxLevel = '41'; + + if (browser.chrome && !browser.mobile) { + maxLevel = '51'; + } + profile.CodecProfiles.push({ Type: 'Video', Codec: 'h264', @@ -434,7 +440,7 @@ define(['browser'], function (browser) { { Condition: 'LessThanEqual', Property: 'VideoLevel', - Value: '41' + Value: maxLevel }] });