2022-01-26 16:09:05 +00:00
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// An enum representing the options to disable embedded subs.
|
|
|
|
/// </summary>
|
|
|
|
public enum EmbeddedSubtitleOptions
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Allow all embedded subs.
|
|
|
|
/// </summary>
|
2022-02-09 23:33:46 +00:00
|
|
|
AllowAll = 0,
|
2022-01-26 16:09:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Allow only embedded subs that are text based.
|
|
|
|
/// </summary>
|
2022-02-09 23:33:46 +00:00
|
|
|
AllowText = 1,
|
2022-01-26 16:09:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Allow only embedded subs that are image based.
|
|
|
|
/// </summary>
|
2022-02-09 23:33:46 +00:00
|
|
|
AllowImage = 2,
|
2022-01-26 16:09:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Disable all embedded subs.
|
|
|
|
/// </summary>
|
2022-02-09 23:33:46 +00:00
|
|
|
AllowNone = 3,
|
2022-01-26 16:09:05 +00:00
|
|
|
}
|
|
|
|
}
|