diff options
| author | David <daullmer@gmail.com> | 2020-08-01 18:07:03 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-08-01 18:07:03 +0200 |
| commit | 74b34169636c5607e215db8e38e4933e0fc2b611 (patch) | |
| tree | 84c0f27d4a3c0c204a9f2173c8842703fd884bf2 /MediaBrowser.Api | |
| parent | d3dc9da5d6780f110bc71b0772d27a97ebb0349f (diff) | |
| parent | d50a02203650743f02016c13acfe9a45c3397d09 (diff) | |
Merge remote-tracking branch 'jellyfin/api-migration' into api-universal-audio
Diffstat (limited to 'MediaBrowser.Api')
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs index fe5f980b18..a347b365da 100644 --- a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs @@ -27,8 +27,6 @@ namespace MediaBrowser.Api.Playback.Hls /// <summary> /// Options is needed for chromecast. Threw Head in there since it's related /// </summary> - [Route("/Videos/{Id}/master.m3u8", "GET", Summary = "Gets a video stream using HTTP live streaming.")] - [Route("/Videos/{Id}/master.m3u8", "HEAD", Summary = "Gets a video stream using HTTP live streaming.")] public class GetMasterHlsVideoPlaylist : VideoStreamRequest, IMasterHlsRequest { public bool EnableAdaptiveBitrateStreaming { get; set; } @@ -39,8 +37,6 @@ namespace MediaBrowser.Api.Playback.Hls } } - [Route("/Audio/{Id}/master.m3u8", "GET", Summary = "Gets an audio stream using HTTP live streaming.")] - [Route("/Audio/{Id}/master.m3u8", "HEAD", Summary = "Gets an audio stream using HTTP live streaming.")] public class GetMasterHlsAudioPlaylist : StreamRequest, IMasterHlsRequest { public bool EnableAdaptiveBitrateStreaming { get; set; } @@ -56,17 +52,14 @@ namespace MediaBrowser.Api.Playback.Hls bool EnableAdaptiveBitrateStreaming { get; set; } } - [Route("/Videos/{Id}/main.m3u8", "GET", Summary = "Gets a video stream using HTTP live streaming.")] public class GetVariantHlsVideoPlaylist : VideoStreamRequest { } - [Route("/Audio/{Id}/main.m3u8", "GET", Summary = "Gets an audio stream using HTTP live streaming.")] public class GetVariantHlsAudioPlaylist : StreamRequest { } - [Route("/Videos/{Id}/hls1/{PlaylistId}/{SegmentId}.{SegmentContainer}", "GET")] public class GetHlsVideoSegment : VideoStreamRequest { public string PlaylistId { get; set; } @@ -78,7 +71,6 @@ namespace MediaBrowser.Api.Playback.Hls public string SegmentId { get; set; } } - [Route("/Audio/{Id}/hls1/{PlaylistId}/{SegmentId}.{SegmentContainer}", "GET")] public class GetHlsAudioSegment : StreamRequest { public string PlaylistId { get; set; } |
