You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/MediaInfo/SubtitleFormat.cs

16 lines
427 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.MediaInfo
{
public static class SubtitleFormat
{
public const string SRT = "srt";
public const string SUBRIP = "subrip";
public const string SSA = "ssa";
public const string ASS = "ass";
public const string VTT = "vtt";
public const string WEBVTT = "webvtt";
public const string TTML = "ttml";
}
}