From 6c63dc88d604b78f3f6a13b2d421b388d497873a Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 30 Aug 2024 20:29:08 +0200 Subject: [PATCH] Only show IsAVC for video streams --- src/components/itemMediaInfo/itemMediaInfo.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/itemMediaInfo/itemMediaInfo.js b/src/components/itemMediaInfo/itemMediaInfo.js index f77395abfc0..63ea8f8597a 100644 --- a/src/components/itemMediaInfo/itemMediaInfo.js +++ b/src/components/itemMediaInfo/itemMediaInfo.js @@ -107,8 +107,10 @@ function getMediaSourceHtml(user, item, version) { if (stream.CodecTag) { attributes.push(createAttribute(globalize.translate('MediaInfoCodecTag'), stream.CodecTag)); } - if (stream.IsAVC != null) { - attributes.push(createAttribute('AVC', (stream.IsAVC ? 'Yes' : 'No'))); + if (stream.Type === 'Video') { + if (stream.IsAVC != null) { + attributes.push(createAttribute('AVC', (stream.IsAVC ? 'Yes' : 'No'))); + } } if (stream.Profile) { attributes.push(createAttribute(globalize.translate('MediaInfoProfile'), stream.Profile));