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
|
@ -30,7 +30,7 @@
|
||||||
margin-right: .5em;
|
margin-right: .5em;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -19px;
|
top: -18px;
|
||||||
font-family: "Open Sans";
|
font-family: "Open Sans";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1178,6 +1178,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type == "Video") {
|
if (type == "Video") {
|
||||||
|
if (stream.IsAnamorphic != null) {
|
||||||
|
attributes.push(createAttribute("Anamorphic", (stream.IsAnamorphic ? 'Yes' : 'No')));
|
||||||
|
}
|
||||||
|
|
||||||
attributes.push(createAttribute("Interlaced", (stream.IsInterlaced ? 'Yes' : 'No')));
|
attributes.push(createAttribute("Interlaced", (stream.IsInterlaced ? 'Yes' : 'No')));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue