add video range info to title

This commit is contained in:
nyanmisaka
2020-11-16 21:15:42 +08:00
parent d53f97d803
commit 5fe4ea2f4a
2 changed files with 8 additions and 0 deletions

View File

@@ -191,6 +191,11 @@ namespace MediaBrowser.Model.Entities
attributes.Add(Codec.ToUpperInvariant());
}
if (!string.IsNullOrEmpty(VideoRange))
{
attributes.Add(VideoRange.ToUpperInvariant());
}
if (!string.IsNullOrEmpty(Title))
{
var result = new StringBuilder(Title);