1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

record IsAvc

This commit is contained in:
Luke Pulverenti 2016-04-27 15:23:05 -04:00
parent f52f1c1e0a
commit 56917c2aa1

View file

@ -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));
}