jellyfin/Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs

113 lines
3.8 KiB
C#
Raw Normal View History

2016-10-11 08:46:59 +02:00
using System;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.MediaEncoding;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
2016-10-11 08:46:59 +02:00
using MediaBrowser.Model.Logging;
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv
2016-10-11 08:46:59 +02:00
{
public class LiveStreamHelper
{
private readonly IMediaEncoder _mediaEncoder;
private readonly ILogger _logger;
2017-03-05 16:38:36 +01:00
const int AnalyzeDurationMs = 2000;
2016-10-11 08:46:59 +02:00
public LiveStreamHelper(IMediaEncoder mediaEncoder, ILogger logger)
{
_mediaEncoder = mediaEncoder;
_logger = logger;
}
2017-02-17 22:11:13 +01:00
public async Task AddMediaInfoWithProbe(MediaSourceInfo mediaSource, bool isAudio, CancellationToken cancellationToken)
2016-10-11 08:46:59 +02:00
{
var originalRuntime = mediaSource.RunTimeTicks;
var now = DateTime.UtcNow;
var info = await _mediaEncoder.GetMediaInfo(new MediaInfoRequest
{
InputPath = mediaSource.Path,
Protocol = mediaSource.Protocol,
MediaType = isAudio ? DlnaProfileType.Audio : DlnaProfileType.Video,
ExtractChapters = false,
2017-03-05 16:38:36 +01:00
AnalyzeDurationMs = AnalyzeDurationMs
2016-10-11 08:46:59 +02:00
}, cancellationToken).ConfigureAwait(false);
_logger.Info("Live tv media info probe took {0} seconds", (DateTime.UtcNow - now).TotalSeconds.ToString(CultureInfo.InvariantCulture));
mediaSource.Bitrate = info.Bitrate;
mediaSource.Container = info.Container;
mediaSource.Formats = info.Formats;
mediaSource.MediaStreams = info.MediaStreams;
mediaSource.RunTimeTicks = info.RunTimeTicks;
mediaSource.Size = info.Size;
mediaSource.Timestamp = info.Timestamp;
mediaSource.Video3DFormat = info.Video3DFormat;
mediaSource.VideoType = info.VideoType;
mediaSource.DefaultSubtitleStreamIndex = null;
// Null this out so that it will be treated like a live stream
if (!originalRuntime.HasValue)
{
mediaSource.RunTimeTicks = null;
}
2016-11-04 00:35:19 +01:00
var audioStream = mediaSource.MediaStreams.FirstOrDefault(i => i.Type == MediaBrowser.Model.Entities.MediaStreamType.Audio);
2016-10-11 08:46:59 +02:00
if (audioStream == null || audioStream.Index == -1)
{
mediaSource.DefaultAudioStreamIndex = null;
}
else
{
mediaSource.DefaultAudioStreamIndex = audioStream.Index;
}
2016-11-04 00:35:19 +01:00
var videoStream = mediaSource.MediaStreams.FirstOrDefault(i => i.Type == MediaBrowser.Model.Entities.MediaStreamType.Video);
2016-10-11 08:46:59 +02:00
if (videoStream != null)
{
if (!videoStream.BitRate.HasValue)
{
var width = videoStream.Width ?? 1920;
if (width >= 3000)
{
2017-04-21 05:47:17 +02:00
videoStream.BitRate = 30000000;
}
else if (width >= 1900)
2016-10-11 08:46:59 +02:00
{
2017-04-21 05:47:17 +02:00
videoStream.BitRate = 20000000;
2016-10-11 08:46:59 +02:00
}
else if (width >= 1200)
2016-10-11 08:46:59 +02:00
{
2017-04-21 05:47:17 +02:00
videoStream.BitRate = 8000000;
2016-10-11 08:46:59 +02:00
}
else if (width >= 700)
{
2017-04-21 05:47:17 +02:00
videoStream.BitRate = 2000000;
2016-10-11 08:46:59 +02:00
}
}
// This is coming up false and preventing stream copy
videoStream.IsAVC = null;
}
// Try to estimate this
2017-01-26 07:26:58 +01:00
mediaSource.InferTotalBitrate(true);
2017-03-05 16:38:36 +01:00
mediaSource.AnalyzeDurationMs = AnalyzeDurationMs;
2016-10-11 08:46:59 +02:00
}
}
}