jellyfin-server/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs

977 lines
36 KiB
C#
Raw Normal View History

2015-03-07 22:43:53 +00:00
using MediaBrowser.Common.IO;
2014-09-10 00:28:59 +00:00
using MediaBrowser.Common.Net;
2014-01-23 18:05:41 +00:00
using MediaBrowser.Controller.Configuration;
2015-03-07 22:43:53 +00:00
using MediaBrowser.Controller.Devices;
2014-03-25 05:25:03 +00:00
using MediaBrowser.Controller.Dlna;
2014-01-23 18:05:41 +00:00
using MediaBrowser.Controller.Library;
2014-02-20 16:37:41 +00:00
using MediaBrowser.Controller.MediaEncoding;
2014-09-03 02:30:24 +00:00
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Entities;
2015-03-07 22:43:53 +00:00
using MediaBrowser.Model.Extensions;
2014-01-23 18:05:41 +00:00
using MediaBrowser.Model.IO;
2015-05-04 17:44:25 +00:00
using MediaBrowser.Model.Serialization;
2014-01-23 18:05:41 +00:00
using ServiceStack;
using System;
2015-05-20 16:28:55 +00:00
using System.Collections.Concurrent;
2014-01-23 18:05:41 +00:00
using System.Collections.Generic;
using System.Globalization;
using System.IO;
2014-06-26 17:04:11 +00:00
using System.Linq;
2014-01-23 18:05:41 +00:00
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2014-12-26 17:45:06 +00:00
using MimeTypes = MediaBrowser.Model.Net.MimeTypes;
2014-01-23 18:05:41 +00:00
namespace MediaBrowser.Api.Playback.Hls
{
2014-08-17 05:38:13 +00:00
/// <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.")]
2014-08-17 05:38:13 +00:00
[Route("/Videos/{Id}/master.m3u8", "HEAD", Summary = "Gets a video stream using HTTP live streaming.")]
2015-05-24 18:33:28 +00:00
public class GetMasterHlsVideoPlaylist : VideoStreamRequest, IMasterHlsRequest
2014-01-23 18:05:41 +00:00
{
2014-08-01 02:58:37 +00:00
public bool EnableAdaptiveBitrateStreaming { get; set; }
2015-05-24 18:33:28 +00:00
public GetMasterHlsVideoPlaylist()
2014-08-01 02:58:37 +00:00
{
EnableAdaptiveBitrateStreaming = true;
}
2014-01-23 18:05:41 +00:00
}
2015-05-24 18:33:28 +00:00
[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; }
public GetMasterHlsAudioPlaylist()
{
EnableAdaptiveBitrateStreaming = true;
}
}
public interface IMasterHlsRequest
{
bool EnableAdaptiveBitrateStreaming { get; set; }
}
[Route("/Videos/{Id}/main.m3u8", "GET", Summary = "Gets a video stream using HTTP live streaming.")]
2015-05-24 18:33:28 +00:00
public class GetVariantHlsVideoPlaylist : VideoStreamRequest
{
}
[Route("/Audio/{Id}/main.m3u8", "GET", Summary = "Gets an audio stream using HTTP live streaming.")]
public class GetVariantHlsAudioPlaylist : StreamRequest
2014-01-23 18:05:41 +00:00
{
}
[Route("/Videos/{Id}/hlsdynamic/{PlaylistId}/{SegmentId}.ts", "GET")]
[Api(Description = "Gets an Http live streaming segment file. Internal use only.")]
2015-05-24 18:33:28 +00:00
public class GetHlsVideoSegment : VideoStreamRequest
{
public string PlaylistId { get; set; }
/// <summary>
/// Gets or sets the segment id.
/// </summary>
/// <value>The segment id.</value>
public string SegmentId { get; set; }
}
[Route("/Audio/{Id}/hlsdynamic/{PlaylistId}/{SegmentId}.aac", "GET")]
[Route("/Audio/{Id}/hlsdynamic/{PlaylistId}/{SegmentId}.ts", "GET")]
[Api(Description = "Gets an Http live streaming segment file. Internal use only.")]
public class GetHlsAudioSegment : StreamRequest
2014-01-23 18:05:41 +00:00
{
public string PlaylistId { get; set; }
/// <summary>
/// Gets or sets the segment id.
/// </summary>
/// <value>The segment id.</value>
public string SegmentId { get; set; }
}
public class DynamicHlsService : BaseHlsService
{
2015-05-19 19:15:40 +00:00
public DynamicHlsService(IServerConfigurationManager serverConfig, IUserManager userManager, ILibraryManager libraryManager, IIsoManager isoManager, IMediaEncoder mediaEncoder, IFileSystem fileSystem, IDlnaManager dlnaManager, ISubtitleEncoder subtitleEncoder, IDeviceManager deviceManager, IMediaSourceManager mediaSourceManager, IZipClient zipClient, IJsonSerializer jsonSerializer, INetworkManager networkManager)
: base(serverConfig, userManager, libraryManager, isoManager, mediaEncoder, fileSystem, dlnaManager, subtitleEncoder, deviceManager, mediaSourceManager, zipClient, jsonSerializer)
2014-01-23 18:05:41 +00:00
{
2014-09-10 00:28:59 +00:00
NetworkManager = networkManager;
2014-01-23 18:05:41 +00:00
}
2015-01-20 05:19:13 +00:00
protected INetworkManager NetworkManager { get; private set; }
2014-08-17 05:38:13 +00:00
2015-05-24 18:33:28 +00:00
public Task<object> Get(GetMasterHlsVideoPlaylist request)
2015-01-20 05:19:13 +00:00
{
2015-05-24 18:33:28 +00:00
return GetMasterPlaylistInternal(request, "GET");
2014-08-17 05:38:13 +00:00
}
2015-05-24 18:33:28 +00:00
public Task<object> Head(GetMasterHlsVideoPlaylist request)
2014-08-17 05:38:13 +00:00
{
2015-05-24 18:33:28 +00:00
return GetMasterPlaylistInternal(request, "HEAD");
2014-01-23 18:05:41 +00:00
}
2015-05-24 18:33:28 +00:00
public Task<object> Get(GetMasterHlsAudioPlaylist request)
2014-07-04 05:59:30 +00:00
{
2015-05-24 18:33:28 +00:00
return GetMasterPlaylistInternal(request, "GET");
2014-07-04 05:59:30 +00:00
}
2015-05-24 18:33:28 +00:00
public Task<object> Head(GetMasterHlsAudioPlaylist request)
{
return GetMasterPlaylistInternal(request, "HEAD");
}
public Task<object> Get(GetVariantHlsVideoPlaylist request)
{
return GetVariantPlaylistInternal(request, true, "main");
}
public Task<object> Get(GetVariantHlsAudioPlaylist request)
{
return GetVariantPlaylistInternal(request, false, "main");
}
public Task<object> Get(GetHlsVideoSegment request)
{
return GetDynamicSegment(request, request.SegmentId);
}
public Task<object> Get(GetHlsAudioSegment request)
2014-01-23 18:05:41 +00:00
{
2015-01-20 05:19:13 +00:00
return GetDynamicSegment(request, request.SegmentId);
2014-01-23 18:05:41 +00:00
}
2015-05-24 18:33:28 +00:00
private async Task<object> GetDynamicSegment(StreamRequest request, string segmentId)
2014-01-23 18:05:41 +00:00
{
2014-06-26 17:04:11 +00:00
if ((request.StartTimeTicks ?? 0) > 0)
{
throw new ArgumentException("StartTimeTicks is not allowed.");
}
2014-06-20 04:50:30 +00:00
var cancellationTokenSource = new CancellationTokenSource();
var cancellationToken = cancellationTokenSource.Token;
2015-03-18 16:40:16 +00:00
var requestedIndex = int.Parse(segmentId, NumberStyles.Integer, UsCulture);
2014-01-23 18:05:41 +00:00
2014-06-20 04:50:30 +00:00
var state = await GetState(request, cancellationToken).ConfigureAwait(false);
2014-01-23 18:05:41 +00:00
var playlistPath = Path.ChangeExtension(state.OutputFilePath, ".m3u8");
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
var segmentPath = GetSegmentPath(state, playlistPath, requestedIndex);
2014-09-03 02:30:24 +00:00
var segmentLength = state.SegmentLength;
2014-10-16 03:26:39 +00:00
var segmentExtension = GetSegmentFileExtension(state);
2014-09-03 02:30:24 +00:00
TranscodingJob job = null;
2014-01-23 18:05:41 +00:00
2014-06-20 04:50:30 +00:00
if (File.Exists(segmentPath))
2014-01-23 18:05:41 +00:00
{
2015-03-25 18:29:21 +00:00
job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
2015-03-18 16:40:16 +00:00
return await GetSegmentResult(playlistPath, segmentPath, requestedIndex, segmentLength, job, cancellationToken).ConfigureAwait(false);
2014-01-23 18:05:41 +00:00
}
2014-07-02 18:34:08 +00:00
await ApiEntryPoint.Instance.TranscodingStartLock.WaitAsync(cancellationTokenSource.Token).ConfigureAwait(false);
2014-06-20 04:50:30 +00:00
try
{
if (File.Exists(segmentPath))
{
2015-03-25 18:29:21 +00:00
job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
2015-03-18 16:40:16 +00:00
return await GetSegmentResult(playlistPath, segmentPath, requestedIndex, segmentLength, job, cancellationToken).ConfigureAwait(false);
2014-06-20 04:50:30 +00:00
}
else
{
2015-04-13 19:14:37 +00:00
var startTranscoding = false;
2015-05-27 17:50:40 +00:00
var currentTranscodingIndex = GetCurrentTranscodingIndex(playlistPath, segmentExtension);
2015-04-13 19:14:37 +00:00
var segmentGapRequiringTranscodingChange = 24 / state.SegmentLength;
if (currentTranscodingIndex == null)
{
Logger.Debug("Starting transcoding because currentTranscodingIndex=null");
startTranscoding = true;
}
else if (requestedIndex < currentTranscodingIndex.Value)
{
Logger.Debug("Starting transcoding because requestedIndex={0} and currentTranscodingIndex={1}", requestedIndex, currentTranscodingIndex);
startTranscoding = true;
}
else if ((requestedIndex - currentTranscodingIndex.Value) > segmentGapRequiringTranscodingChange)
{
Logger.Debug("Starting transcoding because segmentGap is {0} and max allowed gap is {1}. requestedIndex={2}", (requestedIndex - currentTranscodingIndex.Value), segmentGapRequiringTranscodingChange, requestedIndex);
startTranscoding = true;
}
if (startTranscoding)
2014-06-20 04:50:30 +00:00
{
// If the playlist doesn't already exist, startup ffmpeg
try
{
2015-03-29 18:31:28 +00:00
ApiEntryPoint.Instance.KillTranscodingJobs(request.DeviceId, request.PlaySessionId, p => false);
2014-07-02 18:34:08 +00:00
2014-06-26 17:04:11 +00:00
if (currentTranscodingIndex.HasValue)
{
2014-10-16 03:26:39 +00:00
DeleteLastFile(playlistPath, segmentExtension, 0);
2014-06-26 17:04:11 +00:00
}
2015-05-20 16:28:55 +00:00
request.StartTimeTicks = GetSeekPositionTicks(state, playlistPath, requestedIndex);
2014-06-20 04:50:30 +00:00
2014-09-03 02:30:24 +00:00
job = await StartFfMpeg(state, playlistPath, cancellationTokenSource).ConfigureAwait(false);
2014-06-20 04:50:30 +00:00
}
catch
{
state.Dispose();
throw;
}
2015-04-13 19:14:37 +00:00
//await WaitForMinimumSegmentCount(playlistPath, 1, cancellationTokenSource.Token).ConfigureAwait(false);
2014-06-20 04:50:30 +00:00
}
2015-04-10 22:16:41 +00:00
else
{
job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
if (job.TranscodingThrottler != null)
{
job.TranscodingThrottler.UnpauseTranscoding();
}
}
2014-06-20 04:50:30 +00:00
}
}
finally
2014-01-23 18:05:41 +00:00
{
2014-07-02 18:34:08 +00:00
ApiEntryPoint.Instance.TranscodingStartLock.Release();
2014-06-20 04:50:30 +00:00
}
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
//Logger.Info("waiting for {0}", segmentPath);
//while (!File.Exists(segmentPath))
//{
// await Task.Delay(50, cancellationToken).ConfigureAwait(false);
//}
2014-01-23 18:05:41 +00:00
2014-06-20 04:50:30 +00:00
Logger.Info("returning {0}", segmentPath);
2015-03-25 18:29:21 +00:00
job = job ?? ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
2015-03-18 16:40:16 +00:00
return await GetSegmentResult(playlistPath, segmentPath, requestedIndex, segmentLength, job, cancellationToken).ConfigureAwait(false);
}
2015-07-31 20:38:08 +00:00
// 256k
private const int BufferSize = 262144;
2015-03-18 16:40:16 +00:00
2015-05-20 16:28:55 +00:00
private long GetSeekPositionTicks(StreamState state, string playlist, int requestedIndex)
{
double startSeconds = 0;
for (var i = 0; i < requestedIndex; i++)
{
2015-05-24 18:33:28 +00:00
var segmentPath = GetSegmentPath(state, playlist, i);
2015-05-20 16:28:55 +00:00
2015-07-03 11:51:45 +00:00
//double length;
//if (SegmentLengths.TryGetValue(Path.GetFileName(segmentPath), out length))
//{
// Logger.Debug("Found segment length of {0} for index {1}", length, i);
// startSeconds += length;
//}
//else
//{
// startSeconds += state.SegmentLength;
//}
startSeconds += state.SegmentLength;
2015-05-20 16:28:55 +00:00
}
var position = TimeSpan.FromSeconds(startSeconds).Ticks;
2015-03-18 16:40:16 +00:00
return position;
2014-06-26 17:04:11 +00:00
}
2015-05-27 17:50:40 +00:00
public int? GetCurrentTranscodingIndex(string playlist, string segmentExtension)
2014-06-26 17:04:11 +00:00
{
2015-05-27 17:50:40 +00:00
var job = ApiEntryPoint.Instance.GetTranscodingJob(playlist, TranscodingJobType);
2015-03-18 16:40:16 +00:00
if (job == null || job.HasExited)
{
return null;
}
2014-10-16 03:26:39 +00:00
var file = GetLastTranscodingFile(playlist, segmentExtension, FileSystem);
2014-06-26 17:04:11 +00:00
if (file == null)
{
return null;
}
var playlistFilename = Path.GetFileNameWithoutExtension(playlist);
var indexString = Path.GetFileNameWithoutExtension(file.Name).Substring(playlistFilename.Length);
return int.Parse(indexString, NumberStyles.Integer, UsCulture);
}
2014-11-24 12:17:48 +00:00
private void DeleteLastFile(string playlistPath, string segmentExtension, int retryCount)
{
var file = GetLastTranscodingFile(playlistPath, segmentExtension, FileSystem);
if (file != null)
{
DeleteFile(file, retryCount);
}
}
private void DeleteFile(FileInfo file, int retryCount)
2014-06-26 17:04:11 +00:00
{
if (retryCount >= 5)
{
return;
}
2015-03-16 20:03:48 +00:00
2014-11-24 12:17:48 +00:00
try
2014-06-26 17:04:11 +00:00
{
FileSystem.DeleteFile(file.FullName);
2014-11-24 12:17:48 +00:00
}
catch (IOException ex)
{
Logger.ErrorException("Error deleting partial stream file(s) {0}", ex, file.FullName);
2014-06-26 17:04:11 +00:00
2014-11-24 12:17:48 +00:00
Thread.Sleep(100);
DeleteFile(file, retryCount + 1);
}
catch (Exception ex)
{
Logger.ErrorException("Error deleting partial stream file(s) {0}", ex, file.FullName);
2014-06-26 17:04:11 +00:00
}
}
2014-10-16 03:26:39 +00:00
private static FileInfo GetLastTranscodingFile(string playlist, string segmentExtension, IFileSystem fileSystem)
2014-06-26 17:04:11 +00:00
{
var folder = Path.GetDirectoryName(playlist);
2014-11-24 12:17:48 +00:00
var filePrefix = Path.GetFileNameWithoutExtension(playlist) ?? string.Empty;
2014-06-26 17:04:11 +00:00
try
{
return new DirectoryInfo(folder)
.EnumerateFiles("*", SearchOption.TopDirectoryOnly)
2014-11-24 12:17:48 +00:00
.Where(i => string.Equals(i.Extension, segmentExtension, StringComparison.OrdinalIgnoreCase) && Path.GetFileNameWithoutExtension(i.Name).StartsWith(filePrefix, StringComparison.OrdinalIgnoreCase))
2014-06-26 17:04:11 +00:00
.OrderByDescending(fileSystem.GetLastWriteTimeUtc)
.FirstOrDefault();
}
catch (DirectoryNotFoundException)
{
return null;
}
2014-06-20 04:50:30 +00:00
}
protected override int GetStartNumber(StreamState state)
{
2014-07-04 05:59:30 +00:00
return GetStartNumber(state.VideoRequest);
}
private int GetStartNumber(VideoStreamRequest request)
{
var segmentId = "0";
2014-06-20 04:50:30 +00:00
2015-05-24 18:33:28 +00:00
var segmentRequest = request as GetHlsVideoSegment;
2014-07-04 05:59:30 +00:00
if (segmentRequest != null)
{
segmentId = segmentRequest.SegmentId;
}
return int.Parse(segmentId, NumberStyles.Integer, UsCulture);
2014-01-23 18:05:41 +00:00
}
2015-05-24 18:33:28 +00:00
private string GetSegmentPath(StreamState state, string playlist, int index)
2014-01-23 18:05:41 +00:00
{
var folder = Path.GetDirectoryName(playlist);
var filename = Path.GetFileNameWithoutExtension(playlist);
2015-05-24 18:33:28 +00:00
return Path.Combine(folder, filename + index.ToString(UsCulture) + GetSegmentFileExtension(state));
2014-01-23 18:05:41 +00:00
}
2014-09-03 02:30:24 +00:00
private async Task<object> GetSegmentResult(string playlistPath,
string segmentPath,
int segmentIndex,
int segmentLength,
TranscodingJob transcodingJob,
CancellationToken cancellationToken)
2014-06-26 17:04:11 +00:00
{
// If all transcoding has completed, just return immediately
2015-07-03 11:51:45 +00:00
if (transcodingJob != null && transcodingJob.HasExited && File.Exists(segmentPath))
2014-06-26 17:04:11 +00:00
{
2014-09-03 02:30:24 +00:00
return GetSegmentResult(segmentPath, segmentIndex, segmentLength, transcodingJob);
2014-06-26 17:04:11 +00:00
}
var segmentFilename = Path.GetFileName(segmentPath);
2015-05-22 15:59:17 +00:00
while (!cancellationToken.IsCancellationRequested)
2014-06-26 17:04:11 +00:00
{
2015-06-07 21:21:30 +00:00
try
2014-07-27 22:01:29 +00:00
{
2015-06-07 21:21:30 +00:00
using (var fileStream = GetPlaylistFileStream(playlistPath))
2014-07-27 22:01:29 +00:00
{
2015-07-31 20:38:08 +00:00
using (var reader = new StreamReader(fileStream, Encoding.UTF8, true, BufferSize))
2015-03-17 21:02:54 +00:00
{
2015-07-31 20:38:08 +00:00
var text = await reader.ReadToEndAsync().ConfigureAwait(false);
2015-06-07 21:21:30 +00:00
2015-07-31 20:38:08 +00:00
// If it appears in the playlist, it's done
if (text.IndexOf(segmentFilename, StringComparison.OrdinalIgnoreCase) != -1)
{
if (File.Exists(segmentPath))
2015-06-07 21:21:30 +00:00
{
2015-07-31 20:38:08 +00:00
return GetSegmentResult(segmentPath, segmentIndex, segmentLength, transcodingJob);
2015-06-07 21:21:30 +00:00
}
2015-07-31 20:38:08 +00:00
//break;
2015-05-22 15:59:17 +00:00
}
2015-03-17 21:02:54 +00:00
}
2014-07-27 22:01:29 +00:00
}
}
2015-06-07 21:21:30 +00:00
catch (IOException)
{
// May get an error if the file is locked
}
2015-05-22 15:59:17 +00:00
await Task.Delay(100, cancellationToken).ConfigureAwait(false);
2014-06-26 17:04:11 +00:00
}
// if a different file is encoding, it's done
//var currentTranscodingIndex = GetCurrentTranscodingIndex(playlistPath);
//if (currentTranscodingIndex > segmentIndex)
//{
2014-09-03 02:30:24 +00:00
//return GetSegmentResult(segmentPath, segmentIndex);
2014-06-26 17:04:11 +00:00
//}
2015-05-22 15:59:17 +00:00
//// Wait for the file to stop being written to, then stream it
//var length = new FileInfo(segmentPath).Length;
//var eofCount = 0;
2014-06-26 17:04:11 +00:00
2015-05-22 15:59:17 +00:00
//while (eofCount < 10)
//{
// var info = new FileInfo(segmentPath);
// if (!info.Exists)
// {
// break;
// }
// var newLength = info.Length;
// if (newLength == length)
// {
// eofCount++;
// }
// else
// {
// eofCount = 0;
// }
// length = newLength;
// await Task.Delay(100, cancellationToken).ConfigureAwait(false);
//}
2014-06-26 17:04:11 +00:00
2015-05-22 15:59:17 +00:00
cancellationToken.ThrowIfCancellationRequested();
2014-09-03 02:30:24 +00:00
return GetSegmentResult(segmentPath, segmentIndex, segmentLength, transcodingJob);
}
private object GetSegmentResult(string segmentPath, int index, int segmentLength, TranscodingJob transcodingJob)
{
var segmentEndingSeconds = (1 + index) * segmentLength;
var segmentEndingPositionTicks = TimeSpan.FromSeconds(segmentEndingSeconds).Ticks;
return ResultFactory.GetStaticFileResult(Request, new StaticFileResultOptions
{
Path = segmentPath,
FileShare = FileShare.ReadWrite,
OnComplete = () =>
{
if (transcodingJob != null)
{
transcodingJob.DownloadPositionTicks = Math.Max(transcodingJob.DownloadPositionTicks ?? segmentEndingPositionTicks, segmentEndingPositionTicks);
2015-03-25 18:29:21 +00:00
ApiEntryPoint.Instance.OnTranscodeEndRequest(transcodingJob);
2014-09-03 02:30:24 +00:00
}
}
});
2014-06-26 17:04:11 +00:00
}
2015-05-24 18:33:28 +00:00
private async Task<object> GetMasterPlaylistInternal(StreamRequest request, string method)
2014-01-23 18:05:41 +00:00
{
var state = await GetState(request, CancellationToken.None).ConfigureAwait(false);
2014-07-31 02:09:23 +00:00
if (string.IsNullOrEmpty(request.MediaSourceId))
{
throw new ArgumentException("MediaSourceId is required");
}
2014-08-17 05:38:13 +00:00
var playlistText = string.Empty;
if (string.Equals(method, "GET", StringComparison.OrdinalIgnoreCase))
{
var audioBitrate = state.OutputAudioBitrate ?? 0;
var videoBitrate = state.OutputVideoBitrate ?? 0;
2014-01-23 18:05:41 +00:00
2014-08-17 05:38:13 +00:00
playlistText = GetMasterPlaylistFileText(state, videoBitrate + audioBitrate);
}
2014-01-23 18:05:41 +00:00
2014-12-26 17:45:06 +00:00
return ResultFactory.GetResult(playlistText, MimeTypes.GetMimeType("playlist.m3u8"), new Dictionary<string, string>());
2014-01-23 18:05:41 +00:00
}
private string GetMasterPlaylistFileText(StreamState state, int totalBitrate)
2014-01-23 18:05:41 +00:00
{
var builder = new StringBuilder();
builder.AppendLine("#EXTM3U");
2015-07-03 11:51:45 +00:00
var isLiveStream = (state.RunTimeTicks ?? 0) == 0;
2014-01-23 18:05:41 +00:00
var queryStringIndex = Request.RawUrl.IndexOf('?');
var queryString = queryStringIndex == -1 ? string.Empty : Request.RawUrl.Substring(queryStringIndex);
// Main stream
2014-10-06 23:58:46 +00:00
var playlistUrl = isLiveStream ? "live.m3u8" : "main.m3u8";
2014-07-01 21:13:32 +00:00
playlistUrl += queryString;
2015-05-24 18:33:28 +00:00
var request = state.Request;
2015-03-28 20:22:27 +00:00
var subtitleStreams = state.MediaSource
.MediaStreams
.Where(i => i.IsTextSubtitleStream)
.ToList();
2015-05-24 18:33:28 +00:00
var subtitleGroup = subtitleStreams.Count > 0 &&
(request is GetMasterHlsVideoPlaylist) &&
((GetMasterHlsVideoPlaylist)request).SubtitleMethod == SubtitleDeliveryMethod.Hls ?
2014-08-17 05:38:13 +00:00
"subs" :
null;
AppendPlaylist(builder, playlistUrl, totalBitrate, subtitleGroup);
2014-10-06 23:58:46 +00:00
if (EnableAdaptiveBitrateStreaming(state, isLiveStream))
{
2015-05-24 18:33:28 +00:00
var requestedVideoBitrate = state.VideoRequest == null ? 0 : state.VideoRequest.VideoBitRate ?? 0;
2014-08-21 15:55:35 +00:00
// By default, vary by just 200k
var variation = GetBitrateVariation(totalBitrate);
2014-08-21 15:55:35 +00:00
var newBitrate = totalBitrate - variation;
var variantUrl = ReplaceBitrate(playlistUrl, requestedVideoBitrate, (requestedVideoBitrate - variation));
AppendPlaylist(builder, variantUrl, newBitrate, subtitleGroup);
2014-08-21 15:55:35 +00:00
variation *= 2;
newBitrate = totalBitrate - variation;
variantUrl = ReplaceBitrate(playlistUrl, requestedVideoBitrate, (requestedVideoBitrate - variation));
AppendPlaylist(builder, variantUrl, newBitrate, subtitleGroup);
}
if (!string.IsNullOrWhiteSpace(subtitleGroup))
{
AddSubtitles(state, subtitleStreams, builder);
}
2014-01-23 18:05:41 +00:00
return builder.ToString();
}
2014-08-21 15:55:35 +00:00
private string ReplaceBitrate(string url, int oldValue, int newValue)
{
return url.Replace(
"videobitrate=" + oldValue.ToString(UsCulture),
"videobitrate=" + newValue.ToString(UsCulture),
StringComparison.OrdinalIgnoreCase);
}
private void AddSubtitles(StreamState state, IEnumerable<MediaStream> subtitles, StringBuilder builder)
{
var selectedIndex = state.SubtitleStream == null ? (int?)null : state.SubtitleStream.Index;
foreach (var stream in subtitles)
{
const string format = "#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID=\"subs\",NAME=\"{0}\",DEFAULT={1},FORCED={2},URI=\"{3}\",LANGUAGE=\"{4}\"";
var name = stream.Language;
var isDefault = selectedIndex.HasValue && selectedIndex.Value == stream.Index;
var isForced = stream.IsForced;
if (string.IsNullOrWhiteSpace(name)) name = stream.Codec ?? "Unknown";
var url = string.Format("{0}/Subtitles/{1}/subtitles.m3u8?SegmentLength={2}",
state.Request.MediaSourceId,
stream.Index.ToString(UsCulture),
30.ToString(UsCulture));
var line = string.Format(format,
name,
isDefault ? "YES" : "NO",
isForced ? "YES" : "NO",
url,
stream.Language ?? "Unknown");
builder.AppendLine(line);
}
}
2014-10-06 23:58:46 +00:00
private bool EnableAdaptiveBitrateStreaming(StreamState state, bool isLiveStream)
2014-07-15 19:16:16 +00:00
{
2014-09-10 00:28:59 +00:00
// Within the local network this will likely do more harm than good.
if (Request.IsLocal || NetworkManager.IsInLocalNetwork(Request.RemoteIp))
{
return false;
}
2015-05-24 18:33:28 +00:00
var request = state.Request as IMasterHlsRequest;
2014-08-01 02:58:37 +00:00
if (request != null && !request.EnableAdaptiveBitrateStreaming)
{
return false;
}
2014-10-06 23:58:46 +00:00
if (isLiveStream || string.IsNullOrWhiteSpace(state.MediaPath))
2014-07-15 19:16:16 +00:00
{
// Opening live streams is so slow it's not even worth it
return false;
}
2014-12-14 20:01:26 +00:00
if (string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
return false;
}
if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
return false;
}
2015-05-24 18:33:28 +00:00
if (!state.IsOutputVideo)
{
return false;
}
2015-04-18 06:15:31 +00:00
// Having problems in android
return false;
//return state.VideoRequest.VideoBitRate.HasValue;
2014-07-15 19:16:16 +00:00
}
private void AppendPlaylist(StringBuilder builder, string url, int bitrate, string subtitleGroup)
{
2014-10-23 04:26:01 +00:00
var header = "#EXT-X-STREAM-INF:BANDWIDTH=" + bitrate.ToString(UsCulture);
if (!string.IsNullOrWhiteSpace(subtitleGroup))
{
header += string.Format(",SUBTITLES=\"{0}\"", subtitleGroup);
}
builder.AppendLine(header);
builder.AppendLine(url);
}
private int GetBitrateVariation(int bitrate)
{
2014-08-21 15:55:35 +00:00
// By default, vary by just 50k
var variation = 50000;
if (bitrate >= 10000000)
{
variation = 2000000;
}
else if (bitrate >= 5000000)
{
variation = 1500000;
}
else if (bitrate >= 3000000)
{
variation = 1000000;
}
else if (bitrate >= 2000000)
{
variation = 500000;
}
else if (bitrate >= 1000000)
{
variation = 300000;
}
2014-07-15 19:16:16 +00:00
else if (bitrate >= 600000)
{
variation = 200000;
}
2014-08-21 15:55:35 +00:00
else if (bitrate >= 400000)
{
variation = 100000;
}
return variation;
}
2015-05-24 18:33:28 +00:00
private async Task<object> GetVariantPlaylistInternal(StreamRequest request, bool isOutputVideo, string name)
2014-01-23 18:05:41 +00:00
{
var state = await GetState(request, CancellationToken.None).ConfigureAwait(false);
var builder = new StringBuilder();
builder.AppendLine("#EXTM3U");
builder.AppendLine("#EXT-X-VERSION:3");
2015-05-21 20:53:14 +00:00
builder.AppendLine("#EXT-X-TARGETDURATION:" + (state.SegmentLength).ToString(UsCulture));
2014-01-23 18:05:41 +00:00
builder.AppendLine("#EXT-X-MEDIA-SEQUENCE:0");
var queryStringIndex = Request.RawUrl.IndexOf('?');
var queryString = queryStringIndex == -1 ? string.Empty : Request.RawUrl.Substring(queryStringIndex);
var seconds = TimeSpan.FromTicks(state.RunTimeTicks ?? 0).TotalSeconds;
var index = 0;
while (seconds > 0)
{
var length = seconds >= state.SegmentLength ? state.SegmentLength : seconds;
2014-07-04 05:59:30 +00:00
builder.AppendLine("#EXTINF:" + length.ToString(UsCulture) + ",");
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
builder.AppendLine(string.Format("hlsdynamic/{0}/{1}{2}{3}",
2014-01-23 18:05:41 +00:00
name,
index.ToString(UsCulture),
2015-05-24 18:33:28 +00:00
GetSegmentFileExtension(isOutputVideo),
2014-01-23 18:05:41 +00:00
queryString));
seconds -= state.SegmentLength;
index++;
}
builder.AppendLine("#EXT-X-ENDLIST");
var playlistText = builder.ToString();
2014-12-26 17:45:06 +00:00
return ResultFactory.GetResult(playlistText, MimeTypes.GetMimeType("playlist.m3u8"), new Dictionary<string, string>());
2014-01-23 18:05:41 +00:00
}
protected override string GetAudioArguments(StreamState state)
{
2015-07-25 17:21:10 +00:00
var codec = GetAudioEncoder(state);
2015-06-08 01:23:56 +00:00
2015-05-24 18:33:28 +00:00
if (!state.IsOutputVideo)
{
2015-06-08 01:23:56 +00:00
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
{
return "-acodec copy";
}
2015-05-24 18:33:28 +00:00
var audioTranscodeParams = new List<string>();
2015-06-08 01:23:56 +00:00
audioTranscodeParams.Add("-acodec " + codec);
2015-07-03 11:51:45 +00:00
2015-05-24 18:33:28 +00:00
if (state.OutputAudioBitrate.HasValue)
{
audioTranscodeParams.Add("-ab " + state.OutputAudioBitrate.Value.ToString(UsCulture));
}
if (state.OutputAudioChannels.HasValue)
{
audioTranscodeParams.Add("-ac " + state.OutputAudioChannels.Value.ToString(UsCulture));
}
if (state.OutputAudioSampleRate.HasValue)
{
audioTranscodeParams.Add("-ar " + state.OutputAudioSampleRate.Value.ToString(UsCulture));
}
audioTranscodeParams.Add("-vn");
return string.Join(" ", audioTranscodeParams.ToArray());
}
2014-10-20 03:04:45 +00:00
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
2014-01-23 18:05:41 +00:00
{
return "-codec:a:0 copy";
}
var args = "-codec:a:0 " + codec;
2014-06-23 16:05:19 +00:00
var channels = state.OutputAudioChannels;
2014-01-23 18:05:41 +00:00
2014-06-23 16:05:19 +00:00
if (channels.HasValue)
{
args += " -ac " + channels.Value;
}
2014-01-23 18:05:41 +00:00
2014-06-23 16:05:19 +00:00
var bitrate = state.OutputAudioBitrate;
2014-01-23 18:05:41 +00:00
2014-06-23 16:05:19 +00:00
if (bitrate.HasValue)
{
args += " -ab " + bitrate.Value.ToString(UsCulture);
2014-01-23 18:05:41 +00:00
}
2014-06-23 16:05:19 +00:00
args += " " + GetAudioFilterParam(state, true);
2014-01-23 18:05:41 +00:00
return args;
}
2014-06-10 17:36:06 +00:00
protected override string GetVideoArguments(StreamState state)
2014-01-23 18:05:41 +00:00
{
2015-05-24 18:33:28 +00:00
if (!state.IsOutputVideo)
{
return string.Empty;
}
2015-07-25 17:21:10 +00:00
var codec = GetVideoEncoder(state);
2014-01-23 18:05:41 +00:00
2014-12-26 17:45:06 +00:00
var args = "-codec:v:0 " + codec;
if (state.EnableMpegtsM2TsMode)
{
args += " -mpegts_m2ts_mode 1";
}
2014-01-23 18:05:41 +00:00
// See if we can save come cpu cycles by avoiding encoding
2015-05-27 17:50:40 +00:00
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
2014-01-23 18:05:41 +00:00
{
2015-05-27 17:50:40 +00:00
if (state.VideoStream != null && IsH264(state.VideoStream))
{
args += " -bsf:v h264_mp4toannexb";
}
args += " -flags -global_header -sc_threshold 0";
2014-01-23 18:05:41 +00:00
}
2015-05-24 18:33:28 +00:00
else
{
var keyFrameArg = string.Format(" -force_key_frames expr:gte(t,n_forced*{0})",
state.SegmentLength.ToString(UsCulture));
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
var hasGraphicalSubs = state.SubtitleStream != null && !state.SubtitleStream.IsTextSubtitleStream;
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
args += " " + GetVideoQualityParam(state, H264Encoder, true) + keyFrameArg;
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
//args += " -mixed-refs 0 -refs 3 -x264opts b_pyramid=0:weightb=0:weightp=0";
2014-01-23 18:05:41 +00:00
2015-05-24 18:33:28 +00:00
// Add resolution params, if specified
if (!hasGraphicalSubs)
{
args += GetOutputSizeParam(state, codec, false);
}
2015-05-21 20:53:14 +00:00
2015-05-24 18:33:28 +00:00
// This is for internal graphical subs
if (hasGraphicalSubs)
{
args += GetGraphicalSubtitleParam(state, codec);
}
2015-05-27 17:50:40 +00:00
args += " -flags +loop-global_header -sc_threshold 0";
2014-01-23 18:05:41 +00:00
}
2015-05-27 17:50:40 +00:00
if (!EnableSplitTranscoding(state))
{
2015-06-01 14:49:23 +00:00
//args += " -copyts";
2015-05-27 17:50:40 +00:00
}
2014-01-23 18:05:41 +00:00
return args;
}
2015-03-28 20:22:27 +00:00
protected override string GetCommandLineArguments(string outputPath, StreamState state, bool isEncoding)
2014-06-28 02:43:10 +00:00
{
var threads = GetNumberOfThreads(state, false);
2015-05-21 20:53:14 +00:00
var inputModifier = GetInputModifier(state, false);
2014-06-28 02:43:10 +00:00
// If isEncoding is true we're actually starting ffmpeg
var startNumberParam = isEncoding ? GetStartNumber(state).ToString(UsCulture) : "0";
2015-05-19 19:15:40 +00:00
var toTimeParam = string.Empty;
2015-05-27 17:50:40 +00:00
var timestampOffsetParam = string.Empty;
2015-05-25 17:32:22 +00:00
if (EnableSplitTranscoding(state))
2015-05-19 19:15:40 +00:00
{
var startTime = state.Request.StartTimeTicks ?? 0;
var durationSeconds = ApiEntryPoint.Instance.GetEncodingOptions().ThrottleThresholdInSeconds;
2015-05-20 16:28:55 +00:00
2015-05-19 19:15:40 +00:00
var endTime = startTime + TimeSpan.FromSeconds(durationSeconds).Ticks;
endTime = Math.Min(endTime, state.RunTimeTicks.Value);
if (endTime < state.RunTimeTicks.Value)
{
2015-05-21 20:53:14 +00:00
//toTimeParam = " -to " + MediaEncoder.GetTimeParameter(endTime);
toTimeParam = " -t " + MediaEncoder.GetTimeParameter(TimeSpan.FromSeconds(durationSeconds).Ticks);
2015-05-19 19:15:40 +00:00
}
2015-06-01 14:49:23 +00:00
}
2015-05-19 19:15:40 +00:00
2015-06-01 14:49:23 +00:00
if (state.IsOutputVideo && !string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase) && (state.Request.StartTimeTicks ?? 0) > 0)
{
timestampOffsetParam = " -output_ts_offset " + MediaEncoder.GetTimeParameter(state.Request.StartTimeTicks ?? 0).ToString(CultureInfo.InvariantCulture);
2015-05-19 19:15:40 +00:00
}
2015-05-27 17:50:40 +00:00
2015-05-24 18:33:28 +00:00
var mapArgs = state.IsOutputVideo ? GetMapArgs(state) : string.Empty;
2015-05-19 19:15:40 +00:00
2015-05-24 18:33:28 +00:00
//var outputTsArg = Path.Combine(Path.GetDirectoryName(outputPath), Path.GetFileNameWithoutExtension(outputPath)) + "%d" + GetSegmentFileExtension(state);
2015-05-21 20:53:14 +00:00
2015-05-24 18:33:28 +00:00
//return string.Format("{0} {11} {1}{10} -map_metadata -1 -threads {2} {3} {4} {5} -f segment -segment_time {6} -segment_format mpegts -segment_list_type m3u8 -segment_start_number {7} -segment_list \"{8}\" -y \"{9}\"",
// inputModifier,
// GetInputArgument(state),
// threads,
// mapArgs,
// GetVideoArguments(state),
// GetAudioArguments(state),
// state.SegmentLength.ToString(UsCulture),
// startNumberParam,
// outputPath,
// outputTsArg,
// slowSeekParam,
// toTimeParam
// ).Trim();
2015-03-16 20:03:48 +00:00
2015-05-24 18:33:28 +00:00
return string.Format("{0}{11} {1} -map_metadata -1 -threads {2} {3} {4}{5} {6} -hls_time {7} -start_number {8} -hls_list_size {9} -y \"{10}\"",
2015-03-16 20:03:48 +00:00
inputModifier,
2015-03-28 20:22:27 +00:00
GetInputArgument(state),
2015-03-16 20:03:48 +00:00
threads,
2015-05-24 18:33:28 +00:00
mapArgs,
2015-03-16 20:03:48 +00:00
GetVideoArguments(state),
2015-05-24 18:33:28 +00:00
timestampOffsetParam,
2015-03-16 20:03:48 +00:00
GetAudioArguments(state),
state.SegmentLength.ToString(UsCulture),
startNumberParam,
state.HlsListSize.ToString(UsCulture),
2015-05-19 19:15:40 +00:00
outputPath,
toTimeParam
2015-03-16 20:03:48 +00:00
).Trim();
2014-06-28 02:43:10 +00:00
}
2015-05-25 17:32:22 +00:00
protected override bool EnableThrottling(StreamState state)
2015-05-19 19:15:40 +00:00
{
2015-05-25 17:32:22 +00:00
return !EnableSplitTranscoding(state);
}
private bool EnableSplitTranscoding(StreamState state)
{
2015-06-01 14:49:23 +00:00
return false;
2015-05-25 17:32:22 +00:00
if (string.Equals(Request.QueryString["EnableSplitTranscoding"], "false", StringComparison.OrdinalIgnoreCase))
2015-05-19 19:15:40 +00:00
{
return false;
}
2015-05-25 17:32:22 +00:00
2015-05-26 15:31:50 +00:00
if (string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
return false;
}
2015-05-27 17:50:40 +00:00
if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
return false;
}
2015-05-25 17:32:22 +00:00
return state.RunTimeTicks.HasValue && state.IsOutputVideo;
2015-05-19 19:15:40 +00:00
}
protected override bool EnableStreamCopy
{
get
{
return false;
}
}
2014-01-23 18:05:41 +00:00
/// <summary>
/// Gets the segment file extension.
/// </summary>
/// <param name="state">The state.</param>
/// <returns>System.String.</returns>
protected override string GetSegmentFileExtension(StreamState state)
{
2015-05-24 18:33:28 +00:00
return GetSegmentFileExtension(state.IsOutputVideo);
}
protected string GetSegmentFileExtension(bool isOutputVideo)
{
return isOutputVideo ? ".ts" : ".ts";
2014-01-23 18:05:41 +00:00
}
}
}