You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
390 B
14 lines
390 B
namespace Jellyfin.Api.Models.StreamingDtos
|
|
{
|
|
/// <summary>
|
|
/// The hls video request dto.
|
|
/// </summary>
|
|
public class HlsAudioRequestDto : StreamingRequestDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
|
|
/// </summary>
|
|
public bool EnableAdaptiveBitrateStreaming { get; set; }
|
|
}
|
|
}
|