Use SubtitleEdit to parse subtitles

This commit is contained in:
Bond_009
2021-01-08 23:03:02 +01:00
parent 995b370017
commit ed8fce2dce
14 changed files with 174 additions and 707 deletions

View File

@@ -1,10 +1,15 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.MediaInfo
{
public class SubtitleTrackEvent
{
public SubtitleTrackEvent(string id, string text)
{
Id = id;
Text = text;
}
public string Id { get; set; }
public string Text { get; set; }

View File

@@ -1,3 +1,4 @@
#nullable enable
#pragma warning disable CS1591
using System;