EmbeddedSubtitleOptions.cs 671 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. /// <summary>
  4. /// An enum representing the options to disable embedded subs.
  5. /// </summary>
  6. public enum EmbeddedSubtitleOptions
  7. {
  8. /// <summary>
  9. /// Allow all embedded subs.
  10. /// </summary>
  11. AllowAll = 0,
  12. /// <summary>
  13. /// Allow only embedded subs that are text based.
  14. /// </summary>
  15. AllowText = 1,
  16. /// <summary>
  17. /// Allow only embedded subs that are image based.
  18. /// </summary>
  19. AllowImage = 2,
  20. /// <summary>
  21. /// Disable all embedded subs.
  22. /// </summary>
  23. AllowNone = 3,
  24. }
  25. }