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:
parent
b9aac88766
commit
32a0d7fcf0
2 changed files with 5 additions and 1 deletions
|
@ -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')));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue