jellyfin/MediaBrowser.Api/Playback/StreamState.cs

320 lines
9.3 KiB
C#
Raw Normal View History

2014-04-25 19:30:41 +02:00
using MediaBrowser.Common.Net;
2014-04-05 17:02:50 +02:00
using MediaBrowser.Controller.LiveTv;
2014-04-02 00:23:07 +02:00
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Drawing;
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;
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;
2014-01-12 22:32:13 +01:00
using System.Threading;
2013-02-27 05:19:05 +01:00
namespace MediaBrowser.Api.Playback
{
2014-04-05 17:02:50 +02:00
public class StreamState : IDisposable
2013-02-27 05:19:05 +01:00
{
2014-04-05 17:02:50 +02:00
private readonly ILogger _logger;
private readonly ILiveTvManager _liveTvManager;
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; set; }
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
}
2014-05-18 21:58:42 +02:00
public StreamState()
{
PlayableStreamFileNames = new List<string>();
}
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; }
public string InputContainer { get; set; }
2013-02-27 05:19:05 +01:00
public MediaStream AudioStream { get; set; }
public MediaStream VideoStream { get; set; }
public MediaStream SubtitleStream { get; set; }
/// <summary>
/// Gets or sets the iso mount.
/// </summary>
/// <value>The iso mount.</value>
public IIsoMount IsoMount { get; set; }
2013-12-19 22:51:32 +01:00
public string MediaPath { get; set; }
public bool IsRemote { get; set; }
public bool IsInputVideo { get; set; }
public VideoType VideoType { get; set; }
public IsoType? IsoType { get; set; }
public List<string> PlayableStreamFileNames { get; set; }
2013-12-21 19:37:34 +01:00
2014-01-05 07:50:48 +01:00
public string LiveTvStreamId { get; set; }
2014-01-12 22:32:13 +01:00
public int SegmentLength = 10;
2014-03-04 05:58:19 +01:00
public int HlsListSize;
2014-01-12 22:32:13 +01:00
public long? RunTimeTicks;
2014-01-15 06:05:19 +01:00
public string OutputAudioSync = "1";
public string OutputVideoSync = "vfr";
2014-01-20 16:04:50 +01:00
2014-04-10 17:06:54 +02:00
public List<string> SupportedAudioCodecs { get; set; }
2014-04-05 17:02:50 +02:00
public StreamState(ILiveTvManager liveTvManager, ILogger logger)
{
_liveTvManager = liveTvManager;
_logger = logger;
2014-04-10 17:06:54 +02:00
SupportedAudioCodecs = new List<string>();
2014-04-05 17:02:50 +02:00
}
2014-03-21 05:52:28 +01:00
public string InputAudioSync { get; set; }
public string InputVideoSync { get; set; }
2014-01-20 16:04:50 +01:00
public bool DeInterlace { get; set; }
2014-01-22 02:37:01 +01:00
public bool ReadInputAtNativeFramerate { get; set; }
public string InputFormat { get; set; }
public string InputVideoCodec { get; set; }
public string InputAudioCodec { get; set; }
public TransportStreamTimestamp InputTimestamp { get; set; }
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; }
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()
{
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;
}
}
private void DisposeIsoMount()
{
if (IsoMount != null)
{
2014-04-06 19:53:23 +02:00
try
{
IsoMount.Dispose();
}
catch (Exception ex)
{
_logger.ErrorException("Error disposing iso mount", ex);
}
2014-04-05 17:02:50 +02:00
IsoMount = null;
}
}
private async void DisposeLiveStream()
{
if (!string.IsNullOrEmpty(LiveTvStreamId))
{
try
{
await _liveTvManager.CloseLiveStream(LiveTvStreamId, CancellationToken.None).ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.ErrorException("Error closing live tv stream", ex);
}
}
}
public int? OutputAudioChannels;
public int? OutputAudioSampleRate;
public int? OutputAudioBitrate;
public int? OutputVideoBitrate;
public string OutputContainer { get; set; }
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);
}
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);
}
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;
}
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
public double? TargetFramerate
{
get
{
var stream = VideoStream;
var requestedFramerate = VideoRequest.MaxFramerate ?? VideoRequest.Framerate;
return requestedFramerate.HasValue && !Request.Static
? requestedFramerate
: stream == null ? null : stream.AverageFrameRate ?? stream.RealFrameRate;
}
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// </summary>
public double? TargetVideoLevel
{
get
{
var stream = VideoStream;
return !string.IsNullOrEmpty(VideoRequest.Level) && !Request.Static
? double.Parse(VideoRequest.Level, CultureInfo.InvariantCulture)
: stream == null ? null : stream.Level;
}
}
public TransportStreamTimestamp TargetTimestamp
{
get
{
var defaultValue = string.Equals(OutputContainer, "m2ts", StringComparison.OrdinalIgnoreCase) ?
2014-04-25 04:45:06 +02:00
TransportStreamTimestamp.Valid :
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;
}
}
2013-02-27 05:19:05 +01:00
}
}