2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
2021-06-18 09:24:40 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Delivery method to use during playback of a specific subtitle format.
|
|
|
|
/// </summary>
|
2018-12-27 16:27:57 -07:00
|
|
|
public enum SubtitleDeliveryMethod
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-18 09:24:40 -07:00
|
|
|
/// Burn the subtitles in the video track.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Encode = 0,
|
2020-02-03 17:49:27 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2021-06-18 09:24:40 -07:00
|
|
|
/// Embed the subtitles in the file or stream.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Embed = 1,
|
2020-02-03 17:49:27 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2021-06-18 09:24:40 -07:00
|
|
|
/// Serve the subtitles as an external file.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
External = 2,
|
2020-02-23 04:11:43 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2021-06-18 09:24:40 -07:00
|
|
|
/// Serve the subtitles as a separate HLS stream.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
Hls = 3
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|