update IsTextSubtitleStream

This commit is contained in:
Luke Pulverenti 2016-10-29 13:58:08 -04:00
parent 2729301bff
commit 77699c5bf7
1 changed files with 2 additions and 1 deletions

View File

@ -290,7 +290,8 @@ namespace MediaBrowser.Model.Entities
return StringHelper.IndexOfIgnoreCase(codec, "pgs") == -1 &&
StringHelper.IndexOfIgnoreCase(codec, "dvd") == -1 &&
StringHelper.IndexOfIgnoreCase(codec, "dvbsub") == -1 &&
!StringHelper.EqualsIgnoreCase(codec, "sub");
!StringHelper.EqualsIgnoreCase(codec, "sub") &&
!StringHelper.EqualsIgnoreCase(codec, "dvb_subtitle");
}
public bool SupportsSubtitleConversionTo(string codec)