2014-05-05 07:45:45 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
|
|
|
{
|
2014-05-06 19:28:19 -07:00
|
|
|
|
public class SubtitleTrackInfo
|
2014-05-05 07:45:45 -07:00
|
|
|
|
{
|
|
|
|
|
public List<SubtitleTrackEvent> TrackEvents { get; set; }
|
|
|
|
|
|
2014-05-06 19:28:19 -07:00
|
|
|
|
public SubtitleTrackInfo()
|
2014-05-05 07:45:45 -07:00
|
|
|
|
{
|
|
|
|
|
TrackEvents = new List<SubtitleTrackEvent>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SubtitleTrackEvent
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Text { get; set; }
|
|
|
|
|
public long StartPositionTicks { get; set; }
|
|
|
|
|
public long EndPositionTicks { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|