SubtitleDeliveryMethod.cs 713 B

123456789101112131415161718192021222324252627282930
  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. }
  26. }