Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/a8c47159eadc92fe1aaf685303d612094fc32acb/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs

31 lines
713 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.Dlna
{
/// <summary>
/// Delivery method to use during playback of a specific subtitle format.
/// </summary>
public enum SubtitleDeliveryMethod
{
/// <summary>
/// Burn the subtitles in the video track.
/// </summary>
Encode = 0,
/// <summary>
/// Embed the subtitles in the file or stream.
/// </summary>
Embed = 1,
/// <summary>
/// Serve the subtitles as an external file.
/// </summary>
External = 2,
/// <summary>
/// Serve the subtitles as a separate HLS stream.
/// </summary>
Hls = 3
}
}