diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 73e7d402da..900f3085bf 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1483,6 +1483,10 @@ attributes.push(createAttribute(Globalize.translate('MediaInfoCodecTag'), stream.CodecTag)); } + if (stream.IsAVC != null) { + attributes.push(createAttribute('AVC', stream.IsAVC)); + } + if (stream.Profile) { attributes.push(createAttribute(Globalize.translate('MediaInfoProfile'), stream.Profile)); }