BaseProgressiveStreamingService.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. using MediaBrowser.Common.IO;
  2. using MediaBrowser.Common.Net;
  3. using MediaBrowser.Controller.Configuration;
  4. using MediaBrowser.Controller.Devices;
  5. using MediaBrowser.Controller.Dlna;
  6. using MediaBrowser.Controller.Drawing;
  7. using MediaBrowser.Controller.Library;
  8. using MediaBrowser.Controller.LiveTv;
  9. using MediaBrowser.Controller.MediaEncoding;
  10. using MediaBrowser.Controller.Net;
  11. using MediaBrowser.Model.IO;
  12. using MediaBrowser.Model.MediaInfo;
  13. using ServiceStack.Web;
  14. using System;
  15. using System.Collections.Generic;
  16. using System.IO;
  17. using System.Threading;
  18. using System.Threading.Tasks;
  19. namespace MediaBrowser.Api.Playback.Progressive
  20. {
  21. /// <summary>
  22. /// Class BaseProgressiveStreamingService
  23. /// </summary>
  24. public abstract class BaseProgressiveStreamingService : BaseStreamingService
  25. {
  26. protected readonly IImageProcessor ImageProcessor;
  27. protected readonly IHttpClient HttpClient;
  28. protected BaseProgressiveStreamingService(IServerConfigurationManager serverConfig, IUserManager userManager, ILibraryManager libraryManager, IIsoManager isoManager, IMediaEncoder mediaEncoder, IFileSystem fileSystem, IDlnaManager dlnaManager, ISubtitleEncoder subtitleEncoder, IDeviceManager deviceManager, IMediaSourceManager mediaSourceManager, IZipClient zipClient, IImageProcessor imageProcessor, IHttpClient httpClient) : base(serverConfig, userManager, libraryManager, isoManager, mediaEncoder, fileSystem, dlnaManager, subtitleEncoder, deviceManager, mediaSourceManager, zipClient)
  29. {
  30. ImageProcessor = imageProcessor;
  31. HttpClient = httpClient;
  32. }
  33. /// <summary>
  34. /// Gets the output file extension.
  35. /// </summary>
  36. /// <param name="state">The state.</param>
  37. /// <returns>System.String.</returns>
  38. protected override string GetOutputFileExtension(StreamState state)
  39. {
  40. var ext = base.GetOutputFileExtension(state);
  41. if (!string.IsNullOrEmpty(ext))
  42. {
  43. return ext;
  44. }
  45. var isVideoRequest = state.VideoRequest != null;
  46. // Try to infer based on the desired video codec
  47. if (isVideoRequest)
  48. {
  49. var videoCodec = state.VideoRequest.VideoCodec;
  50. if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
  51. {
  52. return ".ts";
  53. }
  54. if (string.Equals(videoCodec, "theora", StringComparison.OrdinalIgnoreCase))
  55. {
  56. return ".ogv";
  57. }
  58. if (string.Equals(videoCodec, "vpx", StringComparison.OrdinalIgnoreCase))
  59. {
  60. return ".webm";
  61. }
  62. if (string.Equals(videoCodec, "wmv", StringComparison.OrdinalIgnoreCase))
  63. {
  64. return ".asf";
  65. }
  66. }
  67. // Try to infer based on the desired audio codec
  68. if (!isVideoRequest)
  69. {
  70. var audioCodec = state.Request.AudioCodec;
  71. if (string.Equals("aac", audioCodec, StringComparison.OrdinalIgnoreCase))
  72. {
  73. return ".aac";
  74. }
  75. if (string.Equals("mp3", audioCodec, StringComparison.OrdinalIgnoreCase))
  76. {
  77. return ".mp3";
  78. }
  79. if (string.Equals("vorbis", audioCodec, StringComparison.OrdinalIgnoreCase))
  80. {
  81. return ".ogg";
  82. }
  83. if (string.Equals("wma", audioCodec, StringComparison.OrdinalIgnoreCase))
  84. {
  85. return ".wma";
  86. }
  87. }
  88. return null;
  89. }
  90. /// <summary>
  91. /// Gets the type of the transcoding job.
  92. /// </summary>
  93. /// <value>The type of the transcoding job.</value>
  94. protected override TranscodingJobType TranscodingJobType
  95. {
  96. get { return TranscodingJobType.Progressive; }
  97. }
  98. /// <summary>
  99. /// Processes the request.
  100. /// </summary>
  101. /// <param name="request">The request.</param>
  102. /// <param name="isHeadRequest">if set to <c>true</c> [is head request].</param>
  103. /// <returns>Task.</returns>
  104. protected object ProcessRequest(StreamRequest request, bool isHeadRequest)
  105. {
  106. var cancellationTokenSource = new CancellationTokenSource();
  107. var state = GetState(request, cancellationTokenSource.Token).Result;
  108. var responseHeaders = new Dictionary<string, string>();
  109. // Static remote stream
  110. if (request.Static && state.InputProtocol == MediaProtocol.Http)
  111. {
  112. AddDlnaHeaders(state, responseHeaders, true);
  113. using (state)
  114. {
  115. return GetStaticRemoteStreamResult(state, responseHeaders, isHeadRequest, cancellationTokenSource).Result;
  116. }
  117. }
  118. if (request.Static && state.InputProtocol != MediaProtocol.File)
  119. {
  120. throw new ArgumentException(string.Format("Input protocol {0} cannot be streamed statically.", state.InputProtocol));
  121. }
  122. var outputPath = state.OutputFilePath;
  123. var outputPathExists = File.Exists(outputPath);
  124. var isTranscodeCached = outputPathExists && !ApiEntryPoint.Instance.HasActiveTranscodingJob(outputPath, TranscodingJobType.Progressive);
  125. AddDlnaHeaders(state, responseHeaders, request.Static || isTranscodeCached);
  126. // Static stream
  127. if (request.Static)
  128. {
  129. var contentType = state.GetMimeType(state.MediaPath);
  130. using (state)
  131. {
  132. return ResultFactory.GetStaticFileResult(Request, new StaticFileResultOptions
  133. {
  134. ResponseHeaders = responseHeaders,
  135. ContentType = contentType,
  136. IsHeadRequest = isHeadRequest,
  137. Path = state.MediaPath
  138. });
  139. }
  140. }
  141. // Not static but transcode cache file exists
  142. if (isTranscodeCached)
  143. {
  144. var contentType = state.GetMimeType(outputPath);
  145. try
  146. {
  147. return ResultFactory.GetStaticFileResult(Request, new StaticFileResultOptions
  148. {
  149. ResponseHeaders = responseHeaders,
  150. ContentType = contentType,
  151. IsHeadRequest = isHeadRequest,
  152. Path = outputPath
  153. });
  154. }
  155. finally
  156. {
  157. state.Dispose();
  158. }
  159. }
  160. // Need to start ffmpeg
  161. try
  162. {
  163. return GetStreamResult(state, responseHeaders, isHeadRequest, cancellationTokenSource).Result;
  164. }
  165. catch
  166. {
  167. state.Dispose();
  168. throw;
  169. }
  170. }
  171. /// <summary>
  172. /// Gets the static remote stream result.
  173. /// </summary>
  174. /// <param name="state">The state.</param>
  175. /// <param name="responseHeaders">The response headers.</param>
  176. /// <param name="isHeadRequest">if set to <c>true</c> [is head request].</param>
  177. /// <param name="cancellationTokenSource">The cancellation token source.</param>
  178. /// <returns>Task{System.Object}.</returns>
  179. private async Task<object> GetStaticRemoteStreamResult(StreamState state, Dictionary<string, string> responseHeaders, bool isHeadRequest, CancellationTokenSource cancellationTokenSource)
  180. {
  181. string useragent = null;
  182. state.RemoteHttpHeaders.TryGetValue("User-Agent", out useragent);
  183. var trySupportSeek = false;
  184. var options = new HttpRequestOptions
  185. {
  186. Url = state.MediaPath,
  187. UserAgent = useragent,
  188. BufferContent = false,
  189. CancellationToken = cancellationTokenSource.Token
  190. };
  191. if (trySupportSeek)
  192. {
  193. if (!string.IsNullOrWhiteSpace(Request.QueryString["Range"]))
  194. {
  195. options.RequestHeaders["Range"] = Request.QueryString["Range"];
  196. }
  197. }
  198. var response = await HttpClient.GetResponse(options).ConfigureAwait(false);
  199. if (trySupportSeek)
  200. {
  201. foreach (var name in new[] {"Content-Range", "Accept-Ranges"})
  202. {
  203. var val = response.Headers[name];
  204. if (!string.IsNullOrWhiteSpace(val))
  205. {
  206. responseHeaders[name] = val;
  207. }
  208. }
  209. }
  210. else
  211. {
  212. responseHeaders["Accept-Ranges"] = "none";
  213. }
  214. if (response.ContentLength.HasValue)
  215. {
  216. responseHeaders["Content-Length"] = response.ContentLength.Value.ToString(UsCulture);
  217. }
  218. if (isHeadRequest)
  219. {
  220. using (response)
  221. {
  222. return ResultFactory.GetResult(new byte[] { }, response.ContentType, responseHeaders);
  223. }
  224. }
  225. var result = new StaticRemoteStreamWriter(response);
  226. result.Options["Content-Type"] = response.ContentType;
  227. // Add the response headers to the result object
  228. foreach (var header in responseHeaders)
  229. {
  230. result.Options[header.Key] = header.Value;
  231. }
  232. return result;
  233. }
  234. /// <summary>
  235. /// Gets the stream result.
  236. /// </summary>
  237. /// <param name="state">The state.</param>
  238. /// <param name="responseHeaders">The response headers.</param>
  239. /// <param name="isHeadRequest">if set to <c>true</c> [is head request].</param>
  240. /// <param name="cancellationTokenSource">The cancellation token source.</param>
  241. /// <returns>Task{System.Object}.</returns>
  242. private async Task<object> GetStreamResult(StreamState state, IDictionary<string, string> responseHeaders, bool isHeadRequest, CancellationTokenSource cancellationTokenSource)
  243. {
  244. // Use the command line args with a dummy playlist path
  245. var outputPath = state.OutputFilePath;
  246. responseHeaders["Accept-Ranges"] = "none";
  247. var contentType = state.GetMimeType(outputPath);
  248. var contentLength = state.EstimateContentLength ? GetEstimatedContentLength(state) : null;
  249. if (contentLength.HasValue)
  250. {
  251. responseHeaders["Content-Length"] = contentLength.Value.ToString(UsCulture);
  252. }
  253. // Headers only
  254. if (isHeadRequest)
  255. {
  256. var streamResult = ResultFactory.GetResult(new byte[] { }, contentType, responseHeaders);
  257. if (!contentLength.HasValue)
  258. {
  259. var hasOptions = streamResult as IHasOptions;
  260. if (hasOptions != null)
  261. {
  262. if (hasOptions.Options.ContainsKey("Content-Length"))
  263. {
  264. hasOptions.Options.Remove("Content-Length");
  265. }
  266. }
  267. }
  268. return streamResult;
  269. }
  270. await ApiEntryPoint.Instance.TranscodingStartLock.WaitAsync(cancellationTokenSource.Token).ConfigureAwait(false);
  271. try
  272. {
  273. TranscodingJob job;
  274. if (!File.Exists(outputPath))
  275. {
  276. job = await StartFfMpeg(state, outputPath, cancellationTokenSource).ConfigureAwait(false);
  277. }
  278. else
  279. {
  280. job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(outputPath, TranscodingJobType.Progressive);
  281. state.Dispose();
  282. }
  283. var result = new ProgressiveStreamWriter(outputPath, Logger, FileSystem, job);
  284. result.Options["Content-Type"] = contentType;
  285. // Add the response headers to the result object
  286. foreach (var item in responseHeaders)
  287. {
  288. result.Options[item.Key] = item.Value;
  289. }
  290. return result;
  291. }
  292. finally
  293. {
  294. ApiEntryPoint.Instance.TranscodingStartLock.Release();
  295. }
  296. }
  297. /// <summary>
  298. /// Gets the length of the estimated content.
  299. /// </summary>
  300. /// <param name="state">The state.</param>
  301. /// <returns>System.Nullable{System.Int64}.</returns>
  302. private long? GetEstimatedContentLength(StreamState state)
  303. {
  304. var totalBitrate = state.TotalOutputBitrate ?? 0;
  305. if (totalBitrate > 0 && state.RunTimeTicks.HasValue)
  306. {
  307. return Convert.ToInt64(totalBitrate * TimeSpan.FromTicks(state.RunTimeTicks.Value).TotalSeconds);
  308. }
  309. return null;
  310. }
  311. }
  312. }