Kodi 20 adds hdr flags directly into the database, so does the plugin: from xbmc code: std::string CStreamDetails::HdrTypeToString(StreamHdrType hdrType) { switch (hdrType) { case StreamHdrType::HDR_TYPE_DOLBYVISION: return "dolbyvision"; case StreamHdrType::HDR_TYPE_HDR10: return "hdr10"; case StreamHdrType::HDR_TYPE_HLG: return "hlg"; case StreamHdrType::HDR_TYPE_NONE: default: return ""; } } Dolbyvision and hdr10 is supported by plu
    • Like
    1