jellyfin/MediaBrowser.Api/Playback/StreamState.cs

467 lines
13 KiB
C#
Raw Normal View History

2015-03-28 21:22:27 +01:00
using MediaBrowser.Controller.Library;
2014-04-02 00:23:07 +02:00
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Drawing;
2015-03-28 21:22:27 +01:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
2013-08-10 03:16:31 +02:00
using MediaBrowser.Model.IO;
2014-04-05 17:02:50 +02:00
using MediaBrowser.Model.Logging;
2014-04-25 19:30:41 +02:00
using MediaBrowser.Model.MediaInfo;
2015-02-28 19:47:05 +01:00
using MediaBrowser.Model.Net;
2014-04-05 17:02:50 +02:00
using System;
2013-12-19 22:51:32 +01:00
using System.Collections.Generic;
2014-04-25 19:30:41 +02:00
using System.Globalization;
2013-12-19 22:51:32 +01:00
using System.IO;
2016-12-13 18:04:37 +01:00
using System.Linq;
2014-01-12 22:32:13 +01:00
using System.Threading;
using MediaBrowser.MediaEncoding.Encoder;
2013-02-27 05:19:05 +01:00
namespace MediaBrowser.Api.Playback
{
public class StreamState : EncodingJobInfo, IDisposable
2013-02-27 05:19:05 +01:00
{
2014-04-05 17:02:50 +02:00
private readonly ILogger _logger;
2015-03-28 21:22:27 +01:00
private readonly IMediaSourceManager _mediaSourceManager;
2014-04-05 17:02:50 +02:00
2013-12-19 22:51:32 +01:00
public string RequestedUrl { get; set; }
2013-02-27 05:19:05 +01:00
public StreamRequest Request
{
get { return (StreamRequest)BaseRequest; }
set
{
BaseRequest = value;
IsVideoRequest = VideoRequest != null;
}
}
2015-02-28 19:47:05 +01:00
public TranscodingThrottler TranscodingThrottler { get; set; }
2013-02-27 05:19:05 +01:00
2013-03-09 03:34:54 +01:00
public VideoStreamRequest VideoRequest
{
2014-01-22 18:05:32 +01:00
get { return Request as VideoStreamRequest; }
2013-03-09 03:34:54 +01:00
}
2013-02-27 05:19:05 +01:00
/// <summary>
/// Gets or sets the log file stream.
/// </summary>
/// <value>The log file stream.</value>
public Stream LogFileStream { get; set; }
2016-10-05 09:15:29 +02:00
public IDirectStreamProvider DirectStreamProvider { get; set; }
2013-02-27 05:19:05 +01:00
2015-03-18 07:02:22 +01:00
public string WaitForPath { get; set; }
2013-12-19 22:51:32 +01:00
2015-05-24 20:33:28 +02:00
public bool IsOutputVideo
{
get { return Request is VideoStreamRequest; }
}
2013-12-21 19:37:34 +01:00
2016-04-20 20:51:47 +02:00
public int SegmentLength
{
get
{
if (string.Equals(OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
2016-06-30 23:26:43 +02:00
var userAgent = UserAgent ?? string.Empty;
if (userAgent.IndexOf("AppleTV", StringComparison.OrdinalIgnoreCase) != -1)
{
return 10;
}
2016-08-05 07:12:25 +02:00
if (userAgent.IndexOf("cfnetwork", StringComparison.OrdinalIgnoreCase) != -1 ||
userAgent.IndexOf("ipad", StringComparison.OrdinalIgnoreCase) != -1 ||
userAgent.IndexOf("iphone", StringComparison.OrdinalIgnoreCase) != -1 ||
userAgent.IndexOf("ipod", StringComparison.OrdinalIgnoreCase) != -1)
2016-07-23 07:03:16 +02:00
{
return 10;
}
2016-06-30 23:26:43 +02:00
2017-01-07 09:09:24 +01:00
if (IsSegmentedLiveStream)
2016-09-25 20:39:13 +02:00
{
return 3;
}
2017-01-07 09:09:24 +01:00
return 6;
2016-09-19 17:41:35 +02:00
}
2017-01-03 06:15:59 +01:00
2016-04-20 20:51:47 +02:00
return 3;
}
}
2017-01-07 09:09:24 +01:00
public bool IsSegmentedLiveStream
{
get
{
return TranscodingType != TranscodingJobType.Progressive && !RunTimeTicks.HasValue;
}
}
2014-10-16 05:26:39 +02:00
public int HlsListSize
{
2014-11-11 04:41:55 +01:00
get
{
2015-09-09 19:49:44 +02:00
return 0;
2014-11-11 04:41:55 +01:00
}
2014-10-16 05:26:39 +02:00
}
2014-01-12 22:32:13 +01:00
2017-01-29 21:00:29 +01:00
public List<string> SupportedSubtitleCodecs { get; set; }
2016-06-30 23:26:43 +02:00
public string UserAgent { get; set; }
2017-01-07 09:09:24 +01:00
public TranscodingJobType TranscodingType { get; set; }
2014-04-10 17:06:54 +02:00
public StreamState(IMediaSourceManager mediaSourceManager, ILogger logger, TranscodingJobType transcodingType)
: base(logger)
2014-04-05 17:02:50 +02:00
{
2015-03-28 21:22:27 +01:00
_mediaSourceManager = mediaSourceManager;
2014-04-05 17:02:50 +02:00
_logger = logger;
2017-01-29 21:00:29 +01:00
SupportedSubtitleCodecs = new List<string>();
2017-01-07 09:09:24 +01:00
TranscodingType = transcodingType;
2014-04-05 17:02:50 +02:00
}
2014-03-25 06:25:03 +01:00
public string MimeType { get; set; }
public bool EstimateContentLength { get; set; }
public bool EnableMpegtsM2TsMode { get; set; }
public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
2014-06-28 21:35:30 +02:00
public long? EncodingDurationTicks { get; set; }
public string GetMimeType(string outputPath)
{
2014-03-25 06:25:03 +01:00
if (!string.IsNullOrEmpty(MimeType))
{
return MimeType;
}
return MimeTypes.GetMimeType(outputPath);
}
2014-04-05 17:02:50 +02:00
public void Dispose()
{
2015-02-28 19:47:05 +01:00
DisposeTranscodingThrottler();
2014-04-05 17:02:50 +02:00
DisposeLiveStream();
DisposeLogStream();
DisposeIsoMount();
}
private void DisposeLogStream()
{
if (LogFileStream != null)
{
2014-04-06 19:53:23 +02:00
try
{
LogFileStream.Dispose();
}
catch (Exception ex)
{
_logger.ErrorException("Error disposing log stream", ex);
}
2014-04-05 17:02:50 +02:00
LogFileStream = null;
}
}
2015-02-28 19:47:05 +01:00
private void DisposeTranscodingThrottler()
{
if (TranscodingThrottler != null)
{
try
{
TranscodingThrottler.Dispose();
}
catch (Exception ex)
{
_logger.ErrorException("Error disposing TranscodingThrottler", ex);
}
TranscodingThrottler = null;
}
}
2014-04-05 17:02:50 +02:00
private async void DisposeLiveStream()
{
2016-07-28 08:29:14 +02:00
if (MediaSource.RequiresClosing && string.IsNullOrWhiteSpace(Request.LiveStreamId) && !string.IsNullOrWhiteSpace(MediaSource.LiveStreamId))
2014-04-05 17:02:50 +02:00
{
try
{
2016-09-29 14:55:49 +02:00
await _mediaSourceManager.CloseLiveStream(MediaSource.LiveStreamId).ConfigureAwait(false);
2014-04-05 17:02:50 +02:00
}
catch (Exception ex)
{
2015-03-28 21:22:27 +01:00
_logger.ErrorException("Error closing media source", ex);
2014-04-05 17:02:50 +02:00
}
}
}
public string OutputFilePath { get; set; }
public int? OutputAudioBitrate;
2014-10-20 05:04:45 +02:00
public string ActualOutputVideoCodec
{
get
{
var codec = OutputVideoCodec;
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
{
var stream = VideoStream;
if (stream != null)
{
return stream.Codec;
}
return null;
}
return codec;
}
}
public string ActualOutputAudioCodec
{
get
{
var codec = OutputAudioCodec;
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
{
var stream = AudioStream;
if (stream != null)
{
return stream.Codec;
}
return null;
}
return codec;
}
}
2014-04-23 04:47:46 +02:00
public DeviceProfile DeviceProfile { get; set; }
public int? TotalOutputBitrate
{
get
{
return (OutputAudioBitrate ?? 0) + (OutputVideoBitrate ?? 0);
}
}
public int? OutputWidth
{
get
{
if (VideoStream != null && VideoStream.Width.HasValue && VideoStream.Height.HasValue)
{
var size = new ImageSize
{
Width = VideoStream.Width.Value,
Height = VideoStream.Height.Value
};
var newSize = DrawingUtils.Resize(size,
VideoRequest.Width,
VideoRequest.Height,
VideoRequest.MaxWidth,
VideoRequest.MaxHeight);
return Convert.ToInt32(newSize.Width);
}
2014-06-06 19:14:02 +02:00
if (VideoRequest == null)
{
return null;
}
return VideoRequest.MaxWidth ?? VideoRequest.Width;
}
}
public int? OutputHeight
{
get
{
if (VideoStream != null && VideoStream.Width.HasValue && VideoStream.Height.HasValue)
{
var size = new ImageSize
{
Width = VideoStream.Width.Value,
Height = VideoStream.Height.Value
};
var newSize = DrawingUtils.Resize(size,
VideoRequest.Width,
VideoRequest.Height,
VideoRequest.MaxWidth,
VideoRequest.MaxHeight);
return Convert.ToInt32(newSize.Height);
}
2014-06-06 19:14:02 +02:00
if (VideoRequest == null)
{
return null;
}
return VideoRequest.MaxHeight ?? VideoRequest.Height;
}
}
2014-04-24 07:08:10 +02:00
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
public int? TargetVideoBitDepth
{
get
{
var stream = VideoStream;
return stream == null || !Request.Static ? null : stream.BitDepth;
}
}
2014-09-09 03:15:31 +02:00
/// <summary>
/// Gets the target reference frames.
/// </summary>
/// <value>The target reference frames.</value>
public int? TargetRefFrames
{
get
{
var stream = VideoStream;
return stream == null || !Request.Static ? null : stream.RefFrames;
}
}
public int? TargetVideoStreamCount
{
get
{
if (Request.Static)
{
return GetMediaStreamCount(MediaStreamType.Video, int.MaxValue);
}
return GetMediaStreamCount(MediaStreamType.Video, 1);
}
}
public int? TargetAudioStreamCount
{
get
{
if (Request.Static)
{
return GetMediaStreamCount(MediaStreamType.Audio, int.MaxValue);
}
return GetMediaStreamCount(MediaStreamType.Audio, 1);
}
}
private int? GetMediaStreamCount(MediaStreamType type, int limit)
{
var count = MediaSource.GetStreamCount(type);
if (count.HasValue)
{
count = Math.Min(count.Value, limit);
}
return count;
}
2014-04-24 07:08:10 +02:00
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
2014-06-23 18:05:19 +02:00
public float? TargetFramerate
2014-04-24 07:08:10 +02:00
{
get
{
var stream = VideoStream;
var requestedFramerate = VideoRequest.MaxFramerate ?? VideoRequest.Framerate;
return requestedFramerate.HasValue && !Request.Static
? requestedFramerate
: stream == null ? null : stream.AverageFrameRate ?? stream.RealFrameRate;
}
}
public TransportStreamTimestamp TargetTimestamp
{
get
{
2014-06-02 21:32:41 +02:00
var defaultValue = string.Equals(OutputContainer, "m2ts", StringComparison.OrdinalIgnoreCase) ?
TransportStreamTimestamp.Valid :
2014-04-25 04:45:06 +02:00
TransportStreamTimestamp.None;
2014-04-24 07:08:10 +02:00
return !Request.Static
? defaultValue
: InputTimestamp;
2014-04-24 07:08:10 +02:00
}
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
public int? TargetPacketLength
{
get
{
var stream = VideoStream;
return !Request.Static
? null
: stream == null ? null : stream.PacketLength;
}
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
public string TargetVideoProfile
{
get
{
var stream = VideoStream;
return !string.IsNullOrEmpty(VideoRequest.Profile) && !Request.Static
? VideoRequest.Profile
: stream == null ? null : stream.Profile;
}
}
2015-10-19 18:05:03 +02:00
public string TargetVideoCodecTag
{
get
{
var stream = VideoStream;
return !Request.Static
? null
: stream == null ? null : stream.CodecTag;
}
}
2014-06-22 18:25:47 +02:00
public bool? IsTargetAnamorphic
{
get
{
if (Request.Static)
{
return VideoStream == null ? null : VideoStream.IsAnamorphic;
}
return false;
}
}
2016-10-03 08:28:45 +02:00
public bool? IsTargetAVC
{
get
{
if (Request.Static)
{
return VideoStream == null ? null : VideoStream.IsAVC;
}
return true;
}
}
2013-02-27 05:19:05 +01:00
}
}