2023-10-31 13:26:37 -04:00
|
|
|
|
using MediaBrowser.Controller.Streaming;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Models.StreamingDtos;
|
2023-01-31 12:18:10 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The hls video request dto.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class HlsVideoRequestDto : VideoRequestDto
|
2020-07-31 15:09:17 -06:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
|
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
|
2020-07-31 15:09:17 -06:00
|
|
|
|
/// </summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
|
public bool EnableAdaptiveBitrateStreaming { get; set; }
|
2020-07-31 15:09:17 -06:00
|
|
|
|
}
|