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

detect anamorphic video

This commit is contained in:
Luke Pulverenti 2014-06-22 12:25:47 -04:00
parent b9aac88766
commit 32a0d7fcf0
2 changed files with 5 additions and 1 deletions

View file

@ -1178,6 +1178,10 @@
}
if (type == "Video") {
if (stream.IsAnamorphic != null) {
attributes.push(createAttribute("Anamorphic", (stream.IsAnamorphic ? 'Yes' : 'No')));
}
attributes.push(createAttribute("Interlaced", (stream.IsInterlaced ? 'Yes' : 'No')));
}