mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 01:03:54 +01:00
30 lines
657 B
C#
30 lines
657 B
C#
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,
|
|
}
|
|
|
|
}
|