normalize subtitle names
This commit is contained in:
parent
da20e8dcd2
commit
bfe2b501a6
|
@ -400,7 +400,11 @@ namespace MediaBrowser.MediaEncoding.Probing
|
|||
|
||||
private string NormalizeSubtitleCodec(string codec)
|
||||
{
|
||||
if ((codec ?? string.Empty).IndexOf("PGS", StringComparison.OrdinalIgnoreCase) != -1)
|
||||
if (string.Equals(codec, "dvb_subtitle", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
codec = "dvbsub";
|
||||
}
|
||||
else if ((codec ?? string.Empty).IndexOf("PGS", StringComparison.OrdinalIgnoreCase) != -1)
|
||||
{
|
||||
codec = "PGSSUB";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user