-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow Dolby Vision fallback layer on Tizen 3+ #6090
Conversation
Does directstream/remux still work for dolby vision in this case? Just adding profile 8 will cause ffmpeg to tag the video with |
Retested with "Stereo only": Direct streaming, playing fine. The only thing: on LT27H390 (Tizen 3) the colors are more "yellowish", on UE65NU7400 (Tizen 4) they are "reddish". I was testing 🤦♂️ LT27H390 (Tizen 3) isn't HDR Ready. This can be fixed on the app side. Question. Can we just do this? let hevcVideoRangeTypes = 'SDR|DOVIWithSDR';
let vp9VideoRangeTypes = 'SDR';
let av1VideoRangeTypes = 'SDR';
if (supportsHdr10(options)) {
hevcVideoRangeTypes += '|HDR10|DOVIWithHDR10';
vp9VideoRangeTypes += '|HDR10';
av1VideoRangeTypes += '|HDR10';
}
if (supportsHlg(options)) {
hevcVideoRangeTypes += '|HLG|DOVIWithHLG';
vp9VideoRangeTypes += '|HLG';
av1VideoRangeTypes += '|HLG';
} Or do we still have to support some DoVi data? |
If only for Tizen then yes, for other devices no because not all devices accepts the |
23a7fd9
to
aa4004a
Compare
Quality Gate passedIssues Measures |
Cloudflare Pages deployment
|
Changes
Allow Dolby Vision fallback layer on Tizen 3+.
Issues
N/A