From 56917c2aa195f140a14141d6f69c977109614c63 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 27 Apr 2016 15:23:05 -0400 Subject: [PATCH] record IsAvc --- dashboard-ui/scripts/itemdetailpage.js | 4 ++++ 1 file changed, 4 insertions(+) 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)); }