diff --git a/components/ItemTechnicalDetails.tsx b/components/ItemTechnicalDetails.tsx index c0d5e54d..49614a2c 100644 --- a/components/ItemTechnicalDetails.tsx +++ b/components/ItemTechnicalDetails.tsx @@ -183,6 +183,12 @@ const VideoStreamInfo = ({ source }: { source?: MediaSourceInfo }) => { if (!source || !videoStream) return null; + // Dolby Vision video check + const isDolbyVision = + videoStream.VideoRangeType === "DOVI" || + videoStream.DvVersionMajor != null || + videoStream.DvVersionMinor != null; + return ( { iconLeft={} text={`${videoStream.Width}x${videoStream.Height}`} /> + {isDolbyVision && ( + + } + text={"DV"} + /> + )}