20 lines
571 B
C#
20 lines
571 B
C#
// <copyright file="SubtitleFormat.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#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";
|
|
}
|
|
}
|