diff options
| author | crobibero <cody@robibe.ro> | 2020-07-31 15:09:17 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-07-31 15:09:17 -0600 |
| commit | f645e2f8841577d7f1cd3a664d401c8c1837cca0 (patch) | |
| tree | 0f4c05d16c97647bf7290d6b75ff1345ffaa6b33 /Jellyfin.Api/Models/StreamingDtos | |
| parent | 2cb6eb984b82601147cc0bab2592d7ab896d495d (diff) | |
Move DynamicHlsService to Jellyfin.Api
Diffstat (limited to 'Jellyfin.Api/Models/StreamingDtos')
| -rw-r--r-- | Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs | 13 | ||||
| -rw-r--r-- | Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs b/Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs new file mode 100644 index 0000000000..3791fadbe6 --- /dev/null +++ b/Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs @@ -0,0 +1,13 @@ +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; } + } +} diff --git a/Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs b/Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs new file mode 100644 index 0000000000..7a4be091ba --- /dev/null +++ b/Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs @@ -0,0 +1,13 @@ +namespace Jellyfin.Api.Models.StreamingDtos +{ + /// <summary> + /// The hls video request dto. + /// </summary> + public class HlsVideoRequestDto : VideoRequestDto + { + /// <summary> + /// Gets or sets a value indicating whether enable adaptive bitrate streaming. + /// </summary> + public bool EnableAdaptiveBitrateStreaming { get; set; } + } +} |
