Document SubtitleDeliveryMethod
This commit is contained in:
parent
c791c3a215
commit
22efb69e92
|
@ -2,25 +2,28 @@
|
||||||
|
|
||||||
namespace MediaBrowser.Model.Dlna
|
namespace MediaBrowser.Model.Dlna
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Delivery method to use during playback of a specific subtitle format.
|
||||||
|
/// </summary>
|
||||||
public enum SubtitleDeliveryMethod
|
public enum SubtitleDeliveryMethod
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The encode.
|
/// Burn the subtitles in the video track.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Encode = 0,
|
Encode = 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The embed.
|
/// Embed the subtitles in the file or stream.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Embed = 1,
|
Embed = 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The external.
|
/// Serve the subtitles as an external file.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
External = 2,
|
External = 2,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The HLS.
|
/// Serve the subtitles as a separate HLS stream.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Hls = 3
|
Hls = 3
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user