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

Merge pull request #2519 from dmitrylyzo/fix-hevc-in-ts

Add HEVC in TS for Tizen and webOS
This commit is contained in:
Bill Thornton 2021-05-03 12:37:32 -04:00 committed by GitHub
commit 59053ab6ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,6 +463,10 @@ import browser from './browser';
if (!browser.safari) { if (!browser.safari) {
mp4VideoCodecs.push('hevc'); mp4VideoCodecs.push('hevc');
} }
if (browser.tizen || browser.web0s) {
hlsInTsVideoCodecs.push('hevc');
}
} }
if (supportsMpeg2Video()) { if (supportsMpeg2Video()) {