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

Merge pull request #6135 from abdulmueid/vidaa-disable-hevc

This commit is contained in:
Bill Thornton 2024-10-19 16:44:58 -04:00 committed by GitHub
commit ddba3130e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -197,6 +197,10 @@ function canPlayAudioFormat(format) {
}
function testCanPlayMkv(videoTestElement) {
if (browser.vidaa) {
return false;
}
if (browser.tizen || browser.web0s) {
return true;
}
@ -658,7 +662,7 @@ export default function (options) {
if (canPlayHevc(videoTestElement, options)) {
mp4VideoCodecs.push('hevc');
if (browser.tizen || browser.web0s) {
if (browser.tizen || browser.web0s || browser.vidaa) {
hlsInTsVideoCodecs.push('hevc');
}
}