Update Interlace

This commit is contained in:
artiume 2020-05-14 13:27:23 -04:00
parent eb3ce3fb87
commit d41cdb3b7a

View File

@ -197,7 +197,7 @@ namespace MediaBrowser.Model.Entities
{ {
if (i.IsInterlaced) if (i.IsInterlaced)
{ {
return "1440I"; return "1440i";
} }
return "1440p"; return "1440p";
} }
@ -213,7 +213,7 @@ namespace MediaBrowser.Model.Entities
{ {
if (i.IsInterlaced) if (i.IsInterlaced)
{ {
return "720I"; return "720i";
} }
return "720p"; return "720p";
} }
@ -222,7 +222,7 @@ namespace MediaBrowser.Model.Entities
if (i.IsInterlaced) if (i.IsInterlaced)
{ {
return "480I"; return "480i";
} }
return "480p"; return "480p";
} }