2023-01-31 11:18:10 +00:00
|
|
|
|
namespace Jellyfin.Api.Models.StreamingDtos;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The hls video request dto.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class HlsAudioRequestDto : StreamingRequestDto
|
2020-07-31 21:09:17 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
|
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
|
2020-07-31 21:09:17 +00:00
|
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
|
public bool EnableAdaptiveBitrateStreaming { get; set; }
|
2020-07-31 21:09:17 +00:00
|
|
|
|
}
|