Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/cdf55b70ebfe62e4b38a934c57428bc8f1550319/MediaBrowser.MediaEncoding/Subtitles/SubtitleTrackInfo.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
|
|
|
{
|
|
|
|
|
public class SubtitleTrackInfo
|
|
|
|
|
{
|
|
|
|
|
public List<SubtitleTrackEvent> TrackEvents { get; set; }
|
|
|
|
|
|
|
|
|
|
public SubtitleTrackInfo()
|
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|