SubtitleDeliveryMethod.cs 808 B

1234567891011121314151617181920212223242526272829303132333435
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Dlna
  3. {
  4. /// <summary>
  5. /// Delivery method to use during playback of a specific subtitle format.
  6. /// </summary>
  7. public enum SubtitleDeliveryMethod
  8. {
  9. /// <summary>
  10. /// Burn the subtitles in the video track.
  11. /// </summary>
  12. Encode = 0,
  13. /// <summary>
  14. /// Embed the subtitles in the file or stream.
  15. /// </summary>
  16. Embed = 1,
  17. /// <summary>
  18. /// Serve the subtitles as an external file.
  19. /// </summary>
  20. External = 2,
  21. /// <summary>
  22. /// Serve the subtitles as a separate HLS stream.
  23. /// </summary>
  24. Hls = 3,
  25. /// <summary>
  26. /// Drop the subtitle.
  27. /// </summary>
  28. Drop = 4
  29. }
  30. }