From 58eb50095676ec8bb4f7d4e1d0fc766dd3280305 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 6 Sep 2014 00:21:23 -0400 Subject: fixes #914 - Add option to save metadata hidden --- MediaBrowser.Model/ApiClient/IApiClient.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'MediaBrowser.Model/ApiClient') diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index a9d0f480c..7dec2fa38 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -1265,5 +1265,32 @@ namespace MediaBrowser.Model.ApiClient /// The query. /// Task<QueryResult<BaseItemDto>>. Task> GetPlaylistItems(PlaylistItemQuery query); + + /// + /// Gets the url needed to stream an audio file + /// + /// The options. + /// System.String. + /// options + [Obsolete] + string GetAudioStreamUrl(StreamOptions options); + + /// + /// Gets the url needed to stream a video file + /// + /// The options. + /// System.String. + /// options + [Obsolete] + string GetVideoStreamUrl(VideoStreamOptions options); + + /// + /// Formulates a url for streaming video using the HLS protocol + /// + /// The options. + /// System.String. + /// options + [Obsolete] + string GetHlsVideoStreamUrl(VideoStreamOptions options); } } \ No newline at end of file -- cgit v1.2.3