Merge branch 'master' into feature/ffmpeg-version-check

This commit is contained in:
Max Git
2020-06-03 12:26:50 +02:00
289 changed files with 1098 additions and 1078 deletions

View File

@@ -33,10 +33,12 @@ namespace MediaBrowser.MediaEncoding.Subtitles
{
continue;
}
if (line.StartsWith("["))
{
break;
if (string.IsNullOrEmpty(line))
continue;
}
var subEvent = new SubtitleTrackEvent { Id = eventIndex.ToString(_usCulture) };
eventIndex++;
var sections = line.Substring(10).Split(',');