40 lines
960 B
C#
40 lines
960 B
C#
// <copyright file="SubtitleDeliveryMethod.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
/// <summary>
|
|
/// Delivery method to use during playback of a specific subtitle format.
|
|
/// </summary>
|
|
public enum SubtitleDeliveryMethod
|
|
{
|
|
/// <summary>
|
|
/// Burn the subtitles in the video track.
|
|
/// </summary>
|
|
Encode = 0,
|
|
|
|
/// <summary>
|
|
/// Embed the subtitles in the file or stream.
|
|
/// </summary>
|
|
Embed = 1,
|
|
|
|
/// <summary>
|
|
/// Serve the subtitles as an external file.
|
|
/// </summary>
|
|
External = 2,
|
|
|
|
/// <summary>
|
|
/// Serve the subtitles as a separate HLS stream.
|
|
/// </summary>
|
|
Hls = 3,
|
|
|
|
/// <summary>
|
|
/// Drop the subtitle.
|
|
/// </summary>
|
|
Drop = 4
|
|
}
|
|
}
|