jellyfin/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs

289 lines
11 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Controller.Configuration;
2015-01-20 06:19:13 +01:00
using MediaBrowser.Controller.Devices;
2014-03-25 06:25:03 +01:00
using MediaBrowser.Controller.Dlna;
using MediaBrowser.Controller.Library;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2015-01-20 06:19:13 +01:00
using MediaBrowser.Model.Extensions;
2013-08-29 00:05:00 +02:00
using MediaBrowser.Model.IO;
2015-01-20 06:19:13 +01:00
using MediaBrowser.Model.Net;
2015-05-22 17:59:17 +02:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
2013-02-21 02:33:05 +01:00
using System.IO;
2013-08-29 00:05:00 +02:00
using System.Text;
2013-12-21 19:37:34 +01:00
using System.Threading;
2013-02-21 02:33:05 +01:00
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Api.Playback.Hls
2013-02-21 02:33:05 +01:00
{
2013-04-29 18:01:23 +02:00
/// <summary>
/// Class BaseHlsService
/// </summary>
public abstract class BaseHlsService : BaseStreamingService
2013-02-21 02:33:05 +01:00
{
2015-09-20 19:56:26 +02:00
protected BaseHlsService(IServerConfigurationManager serverConfig, IUserManager userManager, ILibraryManager libraryManager, IIsoManager isoManager, IMediaEncoder mediaEncoder, IFileSystem fileSystem, IDlnaManager dlnaManager, ISubtitleEncoder subtitleEncoder, IDeviceManager deviceManager, IMediaSourceManager mediaSourceManager, IZipClient zipClient, IJsonSerializer jsonSerializer)
: base(serverConfig, userManager, libraryManager, isoManager, mediaEncoder, fileSystem, dlnaManager, subtitleEncoder, deviceManager, mediaSourceManager, zipClient, jsonSerializer)
2013-12-06 04:39:44 +01:00
{
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the audio arguments.
/// </summary>
2013-04-29 18:01:23 +02:00
/// <param name="state">The state.</param>
2013-02-21 02:33:05 +01:00
/// <returns>System.String.</returns>
protected abstract string GetAudioArguments(StreamState state);
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the video arguments.
/// </summary>
2013-04-29 18:01:23 +02:00
/// <param name="state">The state.</param>
2013-02-21 02:33:05 +01:00
/// <returns>System.String.</returns>
2014-06-10 19:36:06 +02:00
protected abstract string GetVideoArguments(StreamState state);
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the segment file extension.
/// </summary>
/// <param name="state">The state.</param>
/// <returns>System.String.</returns>
protected abstract string GetSegmentFileExtension(StreamState state);
2013-04-29 18:01:23 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the type of the transcoding job.
/// </summary>
/// <value>The type of the transcoding job.</value>
protected override TranscodingJobType TranscodingJobType
{
get { return TranscodingJobType.Hls; }
}
/// <summary>
/// Processes the request.
2013-02-21 02:33:05 +01:00
/// </summary>
2013-04-29 18:01:23 +02:00
/// <param name="request">The request.</param>
2014-07-01 23:13:32 +02:00
/// <param name="isLive">if set to <c>true</c> [is live].</param>
/// <returns>System.Object.</returns>
2016-06-19 08:18:29 +02:00
protected async Task<object> ProcessRequest(StreamRequest request, bool isLive)
2013-02-21 02:33:05 +01:00
{
2016-06-19 08:18:29 +02:00
return await ProcessRequestAsync(request, isLive).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Processes the request async.
2013-02-21 02:33:05 +01:00
/// </summary>
2014-01-12 22:32:13 +01:00
/// <param name="request">The request.</param>
2014-07-01 23:13:32 +02:00
/// <param name="isLive">if set to <c>true</c> [is live].</param>
/// <returns>Task{System.Object}.</returns>
2014-07-01 23:13:32 +02:00
/// <exception cref="ArgumentException">A video bitrate is required
2014-01-12 22:32:13 +01:00
/// or
2014-07-01 23:13:32 +02:00
/// An audio bitrate is required</exception>
private async Task<object> ProcessRequestAsync(StreamRequest request, bool isLive)
2013-02-21 02:33:05 +01:00
{
2014-06-02 21:32:41 +02:00
var cancellationTokenSource = new CancellationTokenSource();
2014-06-20 06:50:30 +02:00
var state = await GetState(request, cancellationTokenSource.Token).ConfigureAwait(false);
2014-01-12 22:32:13 +01:00
2015-04-13 18:21:10 +02:00
TranscodingJob job = null;
var playlist = state.OutputFilePath;
2013-02-21 02:33:05 +01:00
2015-09-20 19:56:26 +02:00
if (!FileSystem.FileExists(playlist))
2014-04-15 05:54:52 +02:00
{
2016-09-25 20:39:13 +02:00
var transcodingLock = ApiEntryPoint.Instance.GetTranscodingLock(playlist);
await transcodingLock.WaitAsync(cancellationTokenSource.Token).ConfigureAwait(false);
2014-04-05 17:02:50 +02:00
try
{
2015-09-20 19:56:26 +02:00
if (!FileSystem.FileExists(playlist))
2014-04-15 05:54:52 +02:00
{
// If the playlist doesn't already exist, startup ffmpeg
try
{
2015-04-13 18:21:10 +02:00
job = await StartFfMpeg(state, playlist, cancellationTokenSource).ConfigureAwait(false);
2015-05-22 17:59:17 +02:00
job.IsLiveOutput = isLive;
2014-04-15 05:54:52 +02:00
}
catch
{
state.Dispose();
throw;
}
2016-09-25 20:39:13 +02:00
var waitForSegments = state.SegmentLength >= 10 ? 2 : (state.SegmentLength > 3 || !isLive ? 3 : 3);
2015-12-29 17:13:43 +01:00
await WaitForMinimumSegmentCount(playlist, waitForSegments, cancellationTokenSource.Token).ConfigureAwait(false);
2014-06-02 21:32:41 +02:00
}
2014-04-05 17:02:50 +02:00
}
2014-04-15 05:54:52 +02:00
finally
2014-04-05 17:02:50 +02:00
{
2016-09-25 20:39:13 +02:00
transcodingLock.Release();
2014-04-05 17:02:50 +02:00
}
2013-02-21 02:33:05 +01:00
}
2013-08-29 00:05:00 +02:00
2014-07-01 23:13:32 +02:00
if (isLive)
{
2015-04-13 18:21:10 +02:00
job = job ?? ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlist, TranscodingJobType);
if (job != null)
{
ApiEntryPoint.Instance.OnTranscodeEndRequest(job);
}
2014-12-19 05:20:07 +01:00
return ResultFactory.GetResult(GetLivePlaylistText(playlist, state.SegmentLength), MimeTypes.GetMimeType("playlist.m3u8"), new Dictionary<string, string>());
2014-07-01 23:13:32 +02:00
}
var audioBitrate = state.OutputAudioBitrate ?? 0;
var videoBitrate = state.OutputVideoBitrate ?? 0;
2013-08-30 04:13:58 +02:00
2013-09-06 19:27:06 +02:00
var baselineStreamBitrate = 64000;
2016-09-18 22:38:38 +02:00
var playlistText = GetMasterPlaylistFileText(playlist, videoBitrate + audioBitrate, baselineStreamBitrate);
2013-02-21 02:33:05 +01:00
2015-04-13 18:21:10 +02:00
job = job ?? ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlist, TranscodingJobType);
if (job != null)
{
ApiEntryPoint.Instance.OnTranscodeEndRequest(job);
}
2015-09-20 19:56:26 +02:00
2014-09-18 06:50:21 +02:00
return ResultFactory.GetResult(playlistText, MimeTypes.GetMimeType("playlist.m3u8"), new Dictionary<string, string>());
2013-02-21 02:33:05 +01:00
}
2013-10-07 20:22:21 +02:00
2014-12-19 05:20:07 +01:00
private string GetLivePlaylistText(string path, int segmentLength)
{
using (var stream = FileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
using (var reader = new StreamReader(stream))
{
var text = reader.ReadToEnd();
2016-09-19 17:41:35 +02:00
text = text.Replace("#EXTM3U", "#EXTM3U\n#EXT-X-PLAYLIST-TYPE:EVENT");
2015-04-27 19:55:57 +02:00
var newDuration = "#EXT-X-TARGETDURATION:" + segmentLength.ToString(UsCulture);
2014-12-19 05:20:07 +01:00
2015-04-27 19:55:57 +02:00
text = text.Replace("#EXT-X-TARGETDURATION:" + (segmentLength + 1).ToString(UsCulture), newDuration, StringComparison.OrdinalIgnoreCase);
return text;
2014-12-19 05:20:07 +01:00
}
}
}
2016-09-18 22:38:38 +02:00
private string GetMasterPlaylistFileText(string firstPlaylist, int bitrate, int baselineStreamBitrate)
2013-02-21 02:33:05 +01:00
{
2013-08-29 00:05:00 +02:00
var builder = new StringBuilder();
builder.AppendLine("#EXTM3U");
2013-09-03 16:37:15 +02:00
// Pad a little to satisfy the apple hls validator
2014-03-27 20:30:21 +01:00
var paddedBitrate = Convert.ToInt32(bitrate * 1.15);
2013-09-03 16:37:15 +02:00
2013-08-29 00:05:00 +02:00
// Main stream
2013-09-03 16:37:15 +02:00
builder.AppendLine("#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=" + paddedBitrate.ToString(UsCulture));
2013-08-29 00:05:00 +02:00
var playlistUrl = "hls/" + Path.GetFileName(firstPlaylist).Replace(".m3u8", "/stream.m3u8");
builder.AppendLine(playlistUrl);
2013-02-21 02:33:05 +01:00
2013-08-29 00:05:00 +02:00
return builder.ToString();
}
2015-03-10 05:33:51 +01:00
protected virtual async Task WaitForMinimumSegmentCount(string playlist, int segmentCount, CancellationToken cancellationToken)
2013-08-29 00:05:00 +02:00
{
2014-07-01 23:13:32 +02:00
Logger.Debug("Waiting for {0} segments in {1}", segmentCount, playlist);
2013-08-29 00:05:00 +02:00
2016-09-25 20:39:13 +02:00
while (!cancellationToken.IsCancellationRequested)
2014-06-26 19:04:11 +02:00
{
2016-09-25 20:39:13 +02:00
try
2013-02-21 02:33:05 +01:00
{
2016-09-25 20:39:13 +02:00
// Need to use FileShare.ReadWrite because we're reading the file at the same time it's being written
using (var fileStream = GetPlaylistFileStream(playlist))
2013-02-21 02:33:05 +01:00
{
2016-09-25 20:39:13 +02:00
using (var reader = new StreamReader(fileStream))
2014-06-26 19:04:11 +02:00
{
2016-09-25 20:39:13 +02:00
var count = 0;
2014-06-26 19:04:11 +02:00
2016-09-25 20:39:13 +02:00
while (!reader.EndOfStream)
2014-06-26 19:04:11 +02:00
{
2016-09-25 20:39:13 +02:00
var line = await reader.ReadLineAsync().ConfigureAwait(false);
if (line.IndexOf("#EXTINF:", StringComparison.OrdinalIgnoreCase) != -1)
2014-06-26 19:04:11 +02:00
{
2016-09-25 20:39:13 +02:00
count++;
if (count >= segmentCount)
{
Logger.Debug("Finished waiting for {0} segments in {1}", segmentCount, playlist);
return;
}
2014-06-26 19:04:11 +02:00
}
}
2016-09-25 20:39:13 +02:00
await Task.Delay(100, cancellationToken).ConfigureAwait(false);
2014-06-26 19:04:11 +02:00
}
2013-02-21 02:33:05 +01:00
}
}
2016-09-25 20:39:13 +02:00
catch (IOException)
{
// May get an error if the file is locked
}
await Task.Delay(50, cancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
2013-04-29 18:01:23 +02:00
2015-04-02 18:26:42 +02:00
protected Stream GetPlaylistFileStream(string path)
{
var tmpPath = path + ".tmp";
try
{
return FileSystem.GetFileStream(tmpPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true);
}
catch (IOException)
{
return FileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true);
}
}
2015-03-28 21:22:27 +01:00
protected override string GetCommandLineArguments(string outputPath, StreamState state, bool isEncoding)
2013-02-21 02:33:05 +01:00
{
2016-04-04 07:07:10 +02:00
var itsOffsetMs = 0;
2014-03-31 03:00:47 +02:00
var itsOffset = itsOffsetMs == 0 ? string.Empty : string.Format("-itsoffset {0} ", TimeSpan.FromMilliseconds(itsOffsetMs).TotalSeconds.ToString(UsCulture));
var threads = GetNumberOfThreads(state, false);
2014-01-22 02:37:01 +01:00
var inputModifier = GetInputModifier(state);
2014-01-23 19:05:41 +01:00
2014-06-19 17:41:58 +02:00
// If isEncoding is true we're actually starting ffmpeg
2014-06-10 19:36:06 +02:00
var startNumberParam = isEncoding ? GetStartNumber(state).ToString(UsCulture) : "0";
2014-04-15 05:54:52 +02:00
2014-07-01 23:13:32 +02:00
var baseUrlParam = string.Empty;
if (state.Request is GetLiveHlsStream)
{
baseUrlParam = string.Format(" -hls_base_url \"{0}/\"",
"hls/" + Path.GetFileNameWithoutExtension(outputPath));
}
2014-12-20 07:06:27 +01:00
var args = string.Format("{0} {1} {2} -map_metadata -1 -threads {3} {4} {5} -sc_threshold 0 {6} -hls_time {7} -start_number {8} -hls_list_size {9}{10} -y \"{11}\"",
itsOffset,
2014-01-22 02:37:01 +01:00
inputModifier,
2015-03-28 21:22:27 +01:00
GetInputArgument(state),
threads,
GetMapArgs(state),
2014-06-10 19:36:06 +02:00
GetVideoArguments(state),
GetAudioArguments(state),
2014-01-12 22:32:13 +01:00
state.SegmentLength.ToString(UsCulture),
2014-01-23 19:05:41 +01:00
startNumberParam,
2014-03-04 05:58:19 +01:00
state.HlsListSize.ToString(UsCulture),
2014-07-01 23:13:32 +02:00
baseUrlParam,
2013-08-29 00:05:00 +02:00
outputPath
2013-02-21 02:33:05 +01:00
).Trim();
2013-08-29 00:05:00 +02:00
return args;
2013-02-21 02:33:05 +01:00
}
2014-01-23 19:05:41 +01:00
protected virtual int GetStartNumber(StreamState state)
{
return 0;
}
2015-08-27 17:58:07 +02:00
2016-04-04 07:07:10 +02:00
protected bool IsLiveStream(StreamState state)
2015-08-27 17:58:07 +02:00
{
2016-04-04 07:07:10 +02:00
var isLiveStream = (state.RunTimeTicks ?? 0) == 0;
2016-04-21 06:04:57 +02:00
return isLiveStream;
2015-08-27 17:58:07 +02:00
}
2013-02-21 02:33:05 +01:00
}
2015-09-20 19:56:26 +02:00
}