From be1ce0f80275a1718dc89dd65e2919e9eab8eb7b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 13 Feb 2014 11:38:43 -0500 Subject: convert static remote streaming to use internal interfaces --- MediaBrowser.Api/Playback/BaseStreamingService.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs') diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index fa4969878..5705d4cd8 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1222,6 +1222,27 @@ namespace MediaBrowser.Api.Playback { request.AudioChannels = int.Parse(val, UsCulture); } + else if (i == 8) + { + if (videoRequest != null) + { + request.StartTimeTicks = long.Parse(val, UsCulture); + } + } + else if (i == 9) + { + if (videoRequest != null) + { + videoRequest.Profile = val; + } + } + else if (i == 10) + { + if (videoRequest != null) + { + videoRequest.Level = val; + } + } } } -- cgit v1.2.3