Skip to content

Commit

Permalink
Vidaa OS web browser reports it supports HEVC but playback is glitchy…
Browse files Browse the repository at this point in the history
…. Tested on 2 models (U7 & U8). This commit disables HEVC on Vidaa OS browser profile and uses transcoding instead to play HEVC files.

With MKV disabled and hlsInTs, hevc videos work properly by remuxing on Hisense Vidaa OS. Tested on model 55U7QF.

Removed force disabling hevc as it is no longer required with hlsInTs
  • Loading branch information
abdulmueid committed Oct 19, 2024
1 parent bddb631 commit b12ff2a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/scripts/browserDeviceProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ function canPlayAudioFormat(format) {
}

function testCanPlayMkv(videoTestElement) {
if (browser.vidaa) {
return false;
}

if (browser.tizen || browser.web0s) {
return true;
}
Expand Down Expand Up @@ -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');
}
}
Expand Down

0 comments on commit b12ff2a

Please sign in to comment.