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/Configuration/EmbeddedSubtitleOptions.cs

31 lines
657 B

namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// An enum representing the options to disable embedded subs.
/// </summary>
public enum EmbeddedSubtitleOptions
{
/// <summary>
/// Allow all embedded subs.
/// </summary>
AllowAll,
/// <summary>
/// Allow only embedded subs that are text based.
/// </summary>
AllowText,
/// <summary>
/// Allow only embedded subs that are image based.
/// </summary>
AllowImage,
/// <summary>
/// Disable all embedded subs.
/// </summary>
AllowNone,
}
}