jellyfin/MediaBrowser.Model/Dlna/StreamBuilder.cs

1225 lines
50 KiB
C#
Raw Normal View History

2014-04-02 23:55:19 +02:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Extensions;
2015-04-04 21:35:29 +02:00
using MediaBrowser.Model.Logging;
2014-04-30 17:07:02 +02:00
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Session;
2014-04-02 23:55:19 +02:00
using System;
using System.Collections.Generic;
2014-04-02 00:23:07 +02:00
namespace MediaBrowser.Model.Dlna
{
public class StreamBuilder
{
2015-04-04 21:35:29 +02:00
private readonly ILogger _logger;
private readonly ITranscoderSupport _transcoderSupport;
public StreamBuilder(ITranscoderSupport transcoderSupport, ILogger logger)
{
_transcoderSupport = transcoderSupport;
2015-04-04 21:35:29 +02:00
_logger = logger;
}
2015-04-04 21:35:29 +02:00
public StreamBuilder(ILogger logger)
: this(new FullTranscoderSupport(), logger)
{
}
2014-04-02 00:23:07 +02:00
public StreamInfo BuildAudioItem(AudioOptions options)
{
ValidateAudioInput(options);
2014-04-04 00:50:04 +02:00
2015-03-16 02:48:25 +01:00
List<MediaSourceInfo> mediaSources = new List<MediaSourceInfo>();
foreach (MediaSourceInfo i in options.MediaSources)
2014-04-02 00:23:07 +02:00
{
2015-03-16 05:39:55 +01:00
if (string.IsNullOrEmpty(options.MediaSourceId) ||
2015-03-16 02:48:25 +01:00
StringHelper.EqualsIgnoreCase(i.Id, options.MediaSourceId))
2014-05-08 23:23:24 +02:00
{
2015-03-16 02:48:25 +01:00
mediaSources.Add(i);
2014-05-08 23:23:24 +02:00
}
2014-04-02 00:23:07 +02:00
}
2014-05-08 23:23:24 +02:00
List<StreamInfo> streams = new List<StreamInfo>();
foreach (MediaSourceInfo i in mediaSources)
2015-03-02 19:48:21 +01:00
{
StreamInfo streamInfo = BuildAudioItem(i, options);
if (streamInfo != null)
{
streams.Add(streamInfo);
}
}
2014-04-02 00:23:07 +02:00
2014-05-08 22:09:53 +02:00
foreach (StreamInfo stream in streams)
2014-04-02 00:23:07 +02:00
{
stream.DeviceId = options.DeviceId;
stream.DeviceProfileId = options.Profile.Id;
}
2016-08-23 07:08:07 +02:00
return GetOptimalStream(streams, options.GetMaxBitrate(true));
2014-04-02 00:23:07 +02:00
}
public StreamInfo BuildVideoItem(VideoOptions options)
{
ValidateInput(options);
2015-03-16 02:48:25 +01:00
List<MediaSourceInfo> mediaSources = new List<MediaSourceInfo>();
foreach (MediaSourceInfo i in options.MediaSources)
2014-04-02 00:23:07 +02:00
{
2015-03-16 05:39:55 +01:00
if (string.IsNullOrEmpty(options.MediaSourceId) ||
2015-03-16 02:48:25 +01:00
StringHelper.EqualsIgnoreCase(i.Id, options.MediaSourceId))
2014-05-08 23:23:24 +02:00
{
2015-03-16 02:48:25 +01:00
mediaSources.Add(i);
2014-05-08 23:23:24 +02:00
}
2014-04-02 00:23:07 +02:00
}
2014-05-08 23:23:24 +02:00
List<StreamInfo> streams = new List<StreamInfo>();
foreach (MediaSourceInfo i in mediaSources)
2015-03-02 19:48:21 +01:00
{
StreamInfo streamInfo = BuildVideoItem(i, options);
if (streamInfo != null)
{
streams.Add(streamInfo);
2015-03-02 19:48:21 +01:00
}
}
2014-04-02 00:23:07 +02:00
2014-05-08 22:09:53 +02:00
foreach (StreamInfo stream in streams)
2014-04-02 00:23:07 +02:00
{
stream.DeviceId = options.DeviceId;
stream.DeviceProfileId = options.Profile.Id;
}
2016-08-23 07:08:07 +02:00
return GetOptimalStream(streams, options.GetMaxBitrate(false));
2014-04-02 00:23:07 +02:00
}
2016-04-14 21:12:00 +02:00
private StreamInfo GetOptimalStream(List<StreamInfo> streams, int? maxBitrate)
2014-04-02 00:23:07 +02:00
{
2016-04-14 21:12:00 +02:00
streams = StreamInfoSorter.SortMediaSources(streams, maxBitrate);
2014-05-08 23:23:24 +02:00
foreach (StreamInfo stream in streams)
{
return stream;
}
2015-03-02 19:48:21 +01:00
return null;
2014-04-02 00:23:07 +02:00
}
2014-04-06 19:53:23 +02:00
private StreamInfo BuildAudioItem(MediaSourceInfo item, AudioOptions options)
2014-04-02 00:23:07 +02:00
{
2014-05-08 22:09:53 +02:00
StreamInfo playlistItem = new StreamInfo
2014-04-02 00:23:07 +02:00
{
2014-04-06 19:53:23 +02:00
ItemId = options.ItemId,
2014-04-02 00:23:07 +02:00
MediaType = DlnaProfileType.Audio,
2014-04-18 19:16:25 +02:00
MediaSource = item,
2015-01-02 06:36:27 +01:00
RunTimeTicks = item.RunTimeTicks,
2015-02-05 06:29:37 +01:00
Context = options.Context,
DeviceProfile = options.Profile
2014-04-02 00:23:07 +02:00
};
if (options.ForceDirectPlay)
{
playlistItem.PlayMethod = PlayMethod.DirectPlay;
playlistItem.Container = item.Container;
return playlistItem;
}
if (options.ForceDirectStream)
{
playlistItem.PlayMethod = PlayMethod.DirectStream;
playlistItem.Container = item.Container;
return playlistItem;
}
2015-03-23 18:19:21 +01:00
MediaStream audioStream = item.GetDefaultAudioStream(null);
List<PlayMethod> directPlayMethods = GetAudioDirectPlayMethods(item, audioStream, options);
2016-07-09 19:39:04 +02:00
ConditionProcessor conditionProcessor = new ConditionProcessor();
int? inputAudioChannels = audioStream == null ? null : audioStream.Channels;
int? inputAudioBitrate = audioStream == null ? null : audioStream.BitDepth;
2015-03-13 02:55:22 +01:00
if (directPlayMethods.Count > 0)
2014-04-02 00:23:07 +02:00
{
2015-03-13 02:55:22 +01:00
string audioCodec = audioStream == null ? null : audioStream.Codec;
2014-04-02 00:23:07 +02:00
2015-03-13 02:55:22 +01:00
// Make sure audio codec profiles are satisfied
if (!string.IsNullOrEmpty(audioCodec))
2014-04-02 00:23:07 +02:00
{
2015-03-13 02:55:22 +01:00
List<ProfileCondition> conditions = new List<ProfileCondition>();
foreach (CodecProfile i in options.Profile.CodecProfiles)
2014-04-06 19:53:23 +02:00
{
2015-05-07 05:11:51 +02:00
if (i.Type == CodecType.Audio && i.ContainsCodec(audioCodec, item.Container))
2014-05-09 21:43:06 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
if (!conditionProcessor.IsAudioConditionSatisfied(applyCondition, inputAudioChannels, inputAudioBitrate))
{
LogConditionFailure(options.Profile, "AudioCodecProfile", applyCondition, item);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
conditions.Add(c);
}
2014-07-01 06:06:28 +02:00
}
2014-05-09 21:43:06 +02:00
}
2015-03-13 02:55:22 +01:00
}
2014-04-24 07:08:10 +02:00
2015-03-13 02:55:22 +01:00
bool all = true;
foreach (ProfileCondition c in conditions)
{
2016-07-09 19:39:04 +02:00
if (!conditionProcessor.IsAudioConditionSatisfied(c, inputAudioChannels, inputAudioBitrate))
2014-05-09 21:43:06 +02:00
{
2015-07-10 20:30:42 +02:00
LogConditionFailure(options.Profile, "AudioCodecProfile", c, item);
2015-03-13 02:55:22 +01:00
all = false;
break;
2014-05-09 21:43:06 +02:00
}
2015-03-13 02:55:22 +01:00
}
2014-05-09 21:43:06 +02:00
2015-03-13 02:55:22 +01:00
if (all)
{
if (directPlayMethods.Contains(PlayMethod.DirectStream))
2015-03-13 02:55:22 +01:00
{
playlistItem.PlayMethod = PlayMethod.DirectStream;
}
2015-03-13 02:55:22 +01:00
playlistItem.Container = item.Container;
2014-04-24 07:08:10 +02:00
2015-03-13 02:55:22 +01:00
return playlistItem;
2014-04-06 19:53:23 +02:00
}
2014-04-02 00:23:07 +02:00
}
}
2014-05-09 21:43:06 +02:00
TranscodingProfile transcodingProfile = null;
foreach (TranscodingProfile i in options.Profile.TranscodingProfiles)
{
2014-07-17 05:17:14 +02:00
if (i.Type == playlistItem.MediaType && i.Context == options.Context)
2014-05-09 21:43:06 +02:00
{
if (_transcoderSupport.CanEncodeToAudioCodec(i.AudioCodec ?? i.Container))
{
transcodingProfile = i;
break;
}
2014-05-09 21:43:06 +02:00
}
}
2014-04-02 00:23:07 +02:00
if (transcodingProfile != null)
{
2015-03-02 19:48:21 +01:00
if (!item.SupportsTranscoding)
{
return null;
}
playlistItem.PlayMethod = PlayMethod.Transcode;
2014-04-18 07:03:01 +02:00
playlistItem.TranscodeSeekInfo = transcodingProfile.TranscodeSeekInfo;
2014-04-18 19:16:25 +02:00
playlistItem.EstimateContentLength = transcodingProfile.EstimateContentLength;
2014-04-02 00:23:07 +02:00
playlistItem.Container = transcodingProfile.Container;
2016-06-26 18:21:10 +02:00
if (string.IsNullOrEmpty(transcodingProfile.AudioCodec))
{
playlistItem.AudioCodecs = new string[] { };
}
else
{
playlistItem.AudioCodecs = transcodingProfile.AudioCodec.Split(',');
}
playlistItem.SubProtocol = transcodingProfile.Protocol;
2014-04-02 00:23:07 +02:00
2014-05-10 01:08:08 +02:00
List<CodecProfile> audioCodecProfiles = new List<CodecProfile>();
foreach (CodecProfile i in options.Profile.CodecProfiles)
{
2015-05-07 05:11:51 +02:00
if (i.Type == CodecType.Audio && i.ContainsCodec(transcodingProfile.AudioCodec, transcodingProfile.Container))
2014-05-10 01:08:08 +02:00
{
audioCodecProfiles.Add(i);
}
if (audioCodecProfiles.Count >= 1) break;
}
List<ProfileCondition> audioTranscodingConditions = new List<ProfileCondition>();
foreach (CodecProfile i in audioCodecProfiles)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
if (!conditionProcessor.IsAudioConditionSatisfied(applyCondition, inputAudioChannels, inputAudioBitrate))
{
LogConditionFailure(options.Profile, "AudioCodecProfile", applyCondition, item);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
audioTranscodingConditions.Add(c);
}
2014-07-01 06:06:28 +02:00
}
}
2014-04-02 00:23:07 +02:00
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions);
2014-04-06 19:53:23 +02:00
// Honor requested max channels
if (options.MaxAudioChannels.HasValue)
{
2014-05-08 22:09:53 +02:00
int currentValue = playlistItem.MaxAudioChannels ?? options.MaxAudioChannels.Value;
2014-04-06 19:53:23 +02:00
playlistItem.MaxAudioChannels = Math.Min(options.MaxAudioChannels.Value, currentValue);
}
2016-08-23 07:08:07 +02:00
int transcodingBitrate = options.AudioTranscodingBitrate ??
options.Profile.MusicStreamingTranscodingBitrate ??
2014-08-14 15:24:30 +02:00
128000;
2016-08-23 07:08:07 +02:00
int? configuredBitrate = options.GetMaxBitrate(true);
if (configuredBitrate.HasValue)
{
transcodingBitrate = Math.Min(configuredBitrate.Value, transcodingBitrate);
}
playlistItem.AudioBitrate = Math.Min(transcodingBitrate, playlistItem.AudioBitrate ?? transcodingBitrate);
2014-04-02 00:23:07 +02:00
}
return playlistItem;
}
2016-08-23 07:08:07 +02:00
private int? GetBitrateForDirectPlayCheck(MediaSourceInfo item, AudioOptions options, bool isAudio)
2015-03-28 21:22:27 +01:00
{
if (item.Protocol == MediaProtocol.File)
{
return options.Profile.MaxStaticBitrate;
}
2016-08-23 07:08:07 +02:00
return options.GetMaxBitrate(isAudio);
2015-03-28 21:22:27 +01:00
}
2015-03-23 18:19:21 +01:00
private List<PlayMethod> GetAudioDirectPlayMethods(MediaSourceInfo item, MediaStream audioStream, AudioOptions options)
2015-03-13 02:55:22 +01:00
{
DirectPlayProfile directPlayProfile = null;
foreach (DirectPlayProfile i in options.Profile.DirectPlayProfiles)
{
if (i.Type == DlnaProfileType.Audio && IsAudioDirectPlaySupported(i, item, audioStream))
{
directPlayProfile = i;
break;
}
}
List<PlayMethod> playMethods = new List<PlayMethod>();
if (directPlayProfile != null)
{
// While options takes the network and other factors into account. Only applies to direct stream
2016-08-23 07:08:07 +02:00
if (item.SupportsDirectStream && IsAudioEligibleForDirectPlay(item, options.GetMaxBitrate(true)) && options.EnableDirectStream)
2015-03-13 02:55:22 +01:00
{
playMethods.Add(PlayMethod.DirectStream);
}
2015-07-10 20:30:42 +02:00
2015-03-13 02:55:22 +01:00
// The profile describes what the device supports
// If device requirements are satisfied then allow both direct stream and direct play
2015-07-10 20:30:42 +02:00
if (item.SupportsDirectPlay &&
2016-08-23 07:08:07 +02:00
IsAudioEligibleForDirectPlay(item, GetBitrateForDirectPlayCheck(item, options, true)) && options.EnableDirectPlay)
2015-03-13 02:55:22 +01:00
{
playMethods.Add(PlayMethod.DirectPlay);
}
}
2015-07-10 20:30:42 +02:00
else
{
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, No direct play profiles found for Path: {1}",
2015-07-10 20:30:42 +02:00
options.Profile.Name ?? "Unknown Profile",
2015-09-20 19:28:32 +02:00
item.Path ?? "Unknown path");
2015-07-10 20:30:42 +02:00
}
2015-03-13 02:55:22 +01:00
return playMethods;
}
2015-03-31 18:24:16 +02:00
private int? GetDefaultSubtitleStreamIndex(MediaSourceInfo item, SubtitleProfile[] subtitleProfiles)
{
int highestScore = -1;
foreach (MediaStream stream in item.MediaStreams)
{
if (stream.Type == MediaStreamType.Subtitle && stream.Score.HasValue)
{
if (stream.Score.Value > highestScore)
{
highestScore = stream.Score.Value;
}
2015-09-20 19:28:32 +02:00
}
2015-03-31 18:24:16 +02:00
}
List<MediaStream> topStreams = new List<MediaStream>();
foreach (MediaStream stream in item.MediaStreams)
{
if (stream.Type == MediaStreamType.Subtitle && stream.Score.HasValue && stream.Score.Value == highestScore)
{
topStreams.Add(stream);
}
}
// If multiple streams have an equal score, try to pick the most efficient one
if (topStreams.Count > 1)
{
foreach (MediaStream stream in topStreams)
{
foreach (SubtitleProfile profile in subtitleProfiles)
{
if (profile.Method == SubtitleDeliveryMethod.External && StringHelper.EqualsIgnoreCase(profile.Format, stream.Codec))
{
return stream.Index;
}
}
}
}
// If no optimization panned out, just use the original default
return item.DefaultSubtitleStreamIndex;
}
2014-04-02 00:23:07 +02:00
private StreamInfo BuildVideoItem(MediaSourceInfo item, VideoOptions options)
{
2014-05-08 22:09:53 +02:00
StreamInfo playlistItem = new StreamInfo
2014-04-02 00:23:07 +02:00
{
ItemId = options.ItemId,
MediaType = DlnaProfileType.Video,
2014-04-18 19:16:25 +02:00
MediaSource = item,
2015-01-02 06:36:27 +01:00
RunTimeTicks = item.RunTimeTicks,
2015-02-05 06:29:37 +01:00
Context = options.Context,
DeviceProfile = options.Profile
2014-04-02 00:23:07 +02:00
};
2015-03-31 18:24:16 +02:00
playlistItem.SubtitleStreamIndex = options.SubtitleStreamIndex ?? GetDefaultSubtitleStreamIndex(item, options.Profile.SubtitleProfiles);
MediaStream subtitleStream = playlistItem.SubtitleStreamIndex.HasValue ? item.GetMediaStream(MediaStreamType.Subtitle, playlistItem.SubtitleStreamIndex.Value) : null;
2015-03-23 18:19:21 +01:00
MediaStream audioStream = item.GetDefaultAudioStream(options.AudioStreamIndex ?? item.DefaultAudioStreamIndex);
2015-03-31 21:33:38 +02:00
int? audioStreamIndex = null;
if (audioStream != null)
{
audioStreamIndex = audioStream.Index;
}
2015-03-23 18:19:21 +01:00
2014-05-10 01:08:08 +02:00
MediaStream videoStream = item.VideoStream;
2014-04-02 00:23:07 +02:00
2015-03-23 21:06:06 +01:00
// TODO: This doesn't accout for situation of device being able to handle media bitrate, but wifi connection not fast enough
2016-08-23 07:08:07 +02:00
bool isEligibleForDirectPlay = options.EnableDirectPlay && (options.ForceDirectPlay || IsEligibleForDirectPlay(item, GetBitrateForDirectPlayCheck(item, options, true), subtitleStream, options, PlayMethod.DirectPlay));
bool isEligibleForDirectStream = options.EnableDirectStream && (options.ForceDirectStream || IsEligibleForDirectPlay(item, options.GetMaxBitrate(false), subtitleStream, options, PlayMethod.DirectStream));
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, Path: {1}, isEligibleForDirectPlay: {2}, isEligibleForDirectStream: {3}",
2015-04-04 21:35:29 +02:00
options.Profile.Name ?? "Unknown Profile",
item.Path ?? "Unknown path",
isEligibleForDirectPlay,
isEligibleForDirectStream);
2015-03-23 21:06:06 +01:00
if (isEligibleForDirectPlay || isEligibleForDirectStream)
2014-04-02 00:23:07 +02:00
{
// See if it can be direct played
PlayMethod? directPlay = GetVideoDirectPlayProfile(options, item, videoStream, audioStream, isEligibleForDirectPlay, isEligibleForDirectStream);
2014-04-02 00:23:07 +02:00
if (directPlay != null)
{
2014-10-12 03:46:02 +02:00
playlistItem.PlayMethod = directPlay.Value;
2014-04-24 07:08:10 +02:00
playlistItem.Container = item.Container;
2014-04-02 00:23:07 +02:00
if (subtitleStream != null)
{
2016-04-03 01:39:08 +02:00
SubtitleProfile subtitleProfile = GetSubtitleProfile(subtitleStream, options.Profile.SubtitleProfiles, directPlay.Value);
2015-01-15 06:54:42 +01:00
playlistItem.SubtitleDeliveryMethod = subtitleProfile.Method;
playlistItem.SubtitleFormat = subtitleProfile.Format;
}
2014-04-24 07:08:10 +02:00
return playlistItem;
2014-04-02 00:23:07 +02:00
}
}
// Can't direct play, find the transcoding profile
2014-05-08 23:23:24 +02:00
TranscodingProfile transcodingProfile = null;
foreach (TranscodingProfile i in options.Profile.TranscodingProfiles)
{
2014-07-17 05:17:14 +02:00
if (i.Type == playlistItem.MediaType && i.Context == options.Context)
2014-05-08 23:23:24 +02:00
{
transcodingProfile = i;
break;
}
}
2014-04-02 00:23:07 +02:00
if (transcodingProfile != null)
{
2015-03-02 19:48:21 +01:00
if (!item.SupportsTranscoding)
{
return null;
}
if (subtitleStream != null)
{
2016-04-03 01:39:08 +02:00
SubtitleProfile subtitleProfile = GetSubtitleProfile(subtitleStream, options.Profile.SubtitleProfiles, PlayMethod.Transcode);
2015-01-15 06:54:42 +01:00
playlistItem.SubtitleDeliveryMethod = subtitleProfile.Method;
playlistItem.SubtitleFormat = subtitleProfile.Format;
}
playlistItem.PlayMethod = PlayMethod.Transcode;
2014-04-02 00:23:07 +02:00
playlistItem.Container = transcodingProfile.Container;
2014-04-18 19:16:25 +02:00
playlistItem.EstimateContentLength = transcodingProfile.EstimateContentLength;
2014-04-18 07:03:01 +02:00
playlistItem.TranscodeSeekInfo = transcodingProfile.TranscodeSeekInfo;
2016-03-07 05:56:45 +01:00
2016-06-26 18:21:10 +02:00
playlistItem.AudioCodecs = transcodingProfile.AudioCodec.Split(',');
2016-03-07 05:56:45 +01:00
2014-04-02 00:23:07 +02:00
playlistItem.VideoCodec = transcodingProfile.VideoCodec;
playlistItem.CopyTimestamps = transcodingProfile.CopyTimestamps;
2016-07-13 21:16:51 +02:00
playlistItem.EnableSubtitlesInManifest = transcodingProfile.EnableSubtitlesInManifest;
2016-10-16 19:11:32 +02:00
playlistItem.EnableSplittingOnNonKeyFrames = transcodingProfile.EnableSplittingOnNonKeyFrames;
2016-05-14 07:40:01 +02:00
if (!string.IsNullOrEmpty(transcodingProfile.MaxAudioChannels))
{
int transcodingMaxAudioChannels;
if (IntHelper.TryParseCultureInvariant(transcodingProfile.MaxAudioChannels, out transcodingMaxAudioChannels))
{
playlistItem.TranscodingMaxAudioChannels = transcodingMaxAudioChannels;
}
}
playlistItem.SubProtocol = transcodingProfile.Protocol;
playlistItem.AudioStreamIndex = audioStreamIndex;
2016-07-09 19:39:04 +02:00
ConditionProcessor conditionProcessor = new ConditionProcessor();
2014-04-02 00:23:07 +02:00
2014-05-10 01:08:08 +02:00
List<ProfileCondition> videoTranscodingConditions = new List<ProfileCondition>();
foreach (CodecProfile i in options.Profile.CodecProfiles)
{
2015-05-07 05:11:51 +02:00
if (i.Type == CodecType.Video && i.ContainsCodec(transcodingProfile.VideoCodec, transcodingProfile.Container))
2014-05-10 01:08:08 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
bool? isSecondaryAudio = audioStream == null ? null : item.IsSecondaryAudio(audioStream);
int? inputAudioBitrate = audioStream == null ? null : audioStream.BitRate;
int? audioChannels = audioStream == null ? null : audioStream.Channels;
string audioProfile = audioStream == null ? null : audioStream.Profile;
if (!conditionProcessor.IsVideoAudioConditionSatisfied(applyCondition, audioChannels, inputAudioBitrate, audioProfile, isSecondaryAudio))
{
LogConditionFailure(options.Profile, "AudioCodecProfile", applyCondition, item);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
videoTranscodingConditions.Add(c);
}
break;
2014-07-01 06:06:28 +02:00
}
2014-05-10 01:08:08 +02:00
}
}
2014-04-02 00:23:07 +02:00
ApplyTranscodingConditions(playlistItem, videoTranscodingConditions);
2014-05-10 01:08:08 +02:00
List<ProfileCondition> audioTranscodingConditions = new List<ProfileCondition>();
foreach (CodecProfile i in options.Profile.CodecProfiles)
{
2016-06-26 18:21:10 +02:00
if (i.Type == CodecType.VideoAudio && i.ContainsCodec(playlistItem.TargetAudioCodec, transcodingProfile.Container))
2014-05-10 01:08:08 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
int? width = videoStream == null ? null : videoStream.Width;
int? height = videoStream == null ? null : videoStream.Height;
int? bitDepth = videoStream == null ? null : videoStream.BitDepth;
int? videoBitrate = videoStream == null ? null : videoStream.BitRate;
double? videoLevel = videoStream == null ? null : videoStream.Level;
string videoProfile = videoStream == null ? null : videoStream.Profile;
float? videoFramerate = videoStream == null ? null : videoStream.AverageFrameRate ?? videoStream.AverageFrameRate;
bool? isAnamorphic = videoStream == null ? null : videoStream.IsAnamorphic;
string videoCodecTag = videoStream == null ? null : videoStream.CodecTag;
2016-10-03 08:28:45 +02:00
bool? isAvc = videoStream == null ? null : videoStream.IsAVC;
2016-07-09 19:39:04 +02:00
TransportStreamTimestamp? timestamp = videoStream == null ? TransportStreamTimestamp.None : item.Timestamp;
int? packetLength = videoStream == null ? null : videoStream.PacketLength;
int? refFrames = videoStream == null ? null : videoStream.RefFrames;
int? numAudioStreams = item.GetStreamCount(MediaStreamType.Audio);
int? numVideoStreams = item.GetStreamCount(MediaStreamType.Video);
2016-10-03 08:28:45 +02:00
if (!conditionProcessor.IsVideoConditionSatisfied(applyCondition, width, height, bitDepth, videoBitrate, videoProfile, videoLevel, videoFramerate, packetLength, timestamp, isAnamorphic, refFrames, numVideoStreams, numAudioStreams, videoCodecTag, isAvc))
2016-07-09 19:39:04 +02:00
{
LogConditionFailure(options.Profile, "VideoCodecProfile", applyCondition, item);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
audioTranscodingConditions.Add(c);
}
break;
2014-07-01 06:06:28 +02:00
}
2014-05-10 01:08:08 +02:00
}
}
2014-04-02 00:23:07 +02:00
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions);
2014-04-06 19:53:23 +02:00
// Honor requested max channels
if (options.MaxAudioChannels.HasValue)
{
2014-05-08 22:09:53 +02:00
int currentValue = playlistItem.MaxAudioChannels ?? options.MaxAudioChannels.Value;
2014-04-06 19:53:23 +02:00
playlistItem.MaxAudioChannels = Math.Min(options.MaxAudioChannels.Value, currentValue);
}
2016-08-23 07:08:07 +02:00
int audioBitrate = GetAudioBitrate(playlistItem.SubProtocol, options.GetMaxBitrate(false), playlistItem.TargetAudioChannels, playlistItem.TargetAudioCodec, audioStream);
2015-04-20 20:04:02 +02:00
playlistItem.AudioBitrate = Math.Min(playlistItem.AudioBitrate ?? audioBitrate, audioBitrate);
2014-04-06 19:53:23 +02:00
2016-08-23 07:08:07 +02:00
int? maxBitrateSetting = options.GetMaxBitrate(false);
2014-04-06 19:53:23 +02:00
// Honor max rate
if (maxBitrateSetting.HasValue)
2014-04-06 19:53:23 +02:00
{
2014-05-08 22:09:53 +02:00
int videoBitrate = maxBitrateSetting.Value;
2014-04-06 19:53:23 +02:00
if (playlistItem.AudioBitrate.HasValue)
{
videoBitrate -= playlistItem.AudioBitrate.Value;
}
2015-04-20 20:04:02 +02:00
// Make sure the video bitrate is lower than bitrate settings but at least 64k
2014-05-08 22:09:53 +02:00
int currentValue = playlistItem.VideoBitrate ?? videoBitrate;
2015-04-20 20:04:02 +02:00
playlistItem.VideoBitrate = Math.Max(Math.Min(videoBitrate, currentValue), 64000);
2014-04-06 19:53:23 +02:00
}
}
2014-06-23 18:05:19 +02:00
return playlistItem;
}
2016-08-16 02:22:59 +02:00
private int GetAudioBitrate(string subProtocol, int? maxTotalBitrate, int? targetAudioChannels, string targetAudioCodec, MediaStream audioStream)
{
2016-09-17 08:09:29 +02:00
int defaultBitrate = audioStream == null ? 192000 : audioStream.BitRate ?? 192000;
2016-08-24 23:06:04 +02:00
// Reduce the bitrate if we're downmixing
if (targetAudioChannels.HasValue && audioStream != null && audioStream.Channels.HasValue && targetAudioChannels.Value < audioStream.Channels.Value)
2016-04-12 19:37:58 +02:00
{
2016-08-24 23:06:04 +02:00
defaultBitrate = StringHelper.EqualsIgnoreCase(targetAudioCodec, "ac3") ? 192000 : 128000;
2016-07-30 06:21:26 +02:00
}
2015-04-25 05:30:44 +02:00
2016-09-20 21:42:53 +02:00
if (StringHelper.EqualsIgnoreCase(subProtocol, "hls"))
{
2016-09-20 21:42:53 +02:00
defaultBitrate = Math.Min(384000, defaultBitrate);
}
else
{
defaultBitrate = Math.Min(448000, defaultBitrate);
2015-04-25 05:30:44 +02:00
}
int encoderAudioBitrateLimit = int.MaxValue;
if (audioStream != null)
{
// Seeing webm encoding failures when source has 1 audio channel and 22k bitrate.
// Any attempts to transcode over 64k will fail
if (audioStream.Channels.HasValue &&
audioStream.Channels.Value == 1)
{
if ((audioStream.BitRate ?? 0) < 64000)
{
encoderAudioBitrateLimit = 64000;
}
2014-06-23 18:05:19 +02:00
}
2014-04-02 00:23:07 +02:00
}
2016-09-20 21:42:53 +02:00
if (maxTotalBitrate.HasValue)
{
if (maxTotalBitrate.Value < 640000)
{
defaultBitrate = Math.Min(128000, defaultBitrate);
}
}
2015-04-25 05:30:44 +02:00
return Math.Min(defaultBitrate, encoderAudioBitrateLimit);
2014-04-02 00:23:07 +02:00
}
private PlayMethod? GetVideoDirectPlayProfile(VideoOptions options,
2014-04-24 07:08:10 +02:00
MediaSourceInfo mediaSource,
MediaStream videoStream,
2015-03-23 21:06:06 +01:00
MediaStream audioStream,
bool isEligibleForDirectPlay,
bool isEligibleForDirectStream)
2014-04-24 07:08:10 +02:00
{
DeviceProfile profile = options.Profile;
if (options.ForceDirectPlay)
{
return PlayMethod.DirectPlay;
}
if (options.ForceDirectStream)
{
return PlayMethod.DirectStream;
}
2015-11-02 18:25:01 +01:00
if (videoStream == null)
{
_logger.Info("Profile: {0}, Cannot direct stream with no known video stream. Path: {1}",
profile.Name ?? "Unknown Profile",
mediaSource.Path ?? "Unknown path");
return null;
}
2014-04-24 07:08:10 +02:00
// See if it can be direct played
2014-05-08 23:23:24 +02:00
DirectPlayProfile directPlay = null;
foreach (DirectPlayProfile i in profile.DirectPlayProfiles)
{
if (i.Type == DlnaProfileType.Video && IsVideoDirectPlaySupported(i, mediaSource, videoStream, audioStream))
{
directPlay = i;
break;
}
}
2014-04-24 07:08:10 +02:00
if (directPlay == null)
{
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, No direct play profiles found for Path: {1}",
2015-04-04 21:35:29 +02:00
profile.Name ?? "Unknown Profile",
2015-09-20 19:28:32 +02:00
mediaSource.Path ?? "Unknown path");
2014-04-24 07:08:10 +02:00
return null;
}
2014-05-08 22:09:53 +02:00
string container = mediaSource.Container;
2014-04-24 07:08:10 +02:00
2014-05-09 21:43:06 +02:00
List<ProfileCondition> conditions = new List<ProfileCondition>();
foreach (ContainerProfile i in profile.ContainerProfiles)
{
if (i.Type == DlnaProfileType.Video &&
2014-06-05 04:32:40 +02:00
ListHelper.ContainsIgnoreCase(i.GetContainers(), container))
2014-05-09 21:43:06 +02:00
{
2014-09-07 17:52:25 +02:00
foreach (ProfileCondition c in i.Conditions)
2014-07-01 06:06:28 +02:00
{
conditions.Add(c);
}
2014-05-09 21:43:06 +02:00
}
}
2014-04-24 07:08:10 +02:00
2014-05-08 22:09:53 +02:00
ConditionProcessor conditionProcessor = new ConditionProcessor();
2014-04-24 07:08:10 +02:00
2014-05-08 22:09:53 +02:00
int? width = videoStream == null ? null : videoStream.Width;
int? height = videoStream == null ? null : videoStream.Height;
int? bitDepth = videoStream == null ? null : videoStream.BitDepth;
int? videoBitrate = videoStream == null ? null : videoStream.BitRate;
double? videoLevel = videoStream == null ? null : videoStream.Level;
string videoProfile = videoStream == null ? null : videoStream.Profile;
float? videoFramerate = videoStream == null ? null : videoStream.AverageFrameRate ?? videoStream.AverageFrameRate;
2014-06-22 18:25:47 +02:00
bool? isAnamorphic = videoStream == null ? null : videoStream.IsAnamorphic;
2015-10-19 18:05:03 +02:00
string videoCodecTag = videoStream == null ? null : videoStream.CodecTag;
2016-10-03 08:28:45 +02:00
bool? isAvc = videoStream == null ? null : videoStream.IsAVC;
2014-04-24 07:08:10 +02:00
2014-05-08 22:09:53 +02:00
int? audioBitrate = audioStream == null ? null : audioStream.BitRate;
int? audioChannels = audioStream == null ? null : audioStream.Channels;
string audioProfile = audioStream == null ? null : audioStream.Profile;
2014-04-24 07:08:10 +02:00
2014-05-08 22:09:53 +02:00
TransportStreamTimestamp? timestamp = videoStream == null ? TransportStreamTimestamp.None : mediaSource.Timestamp;
int? packetLength = videoStream == null ? null : videoStream.PacketLength;
2014-09-09 03:15:31 +02:00
int? refFrames = videoStream == null ? null : videoStream.RefFrames;
2014-04-24 07:08:10 +02:00
int? numAudioStreams = mediaSource.GetStreamCount(MediaStreamType.Audio);
int? numVideoStreams = mediaSource.GetStreamCount(MediaStreamType.Video);
2014-04-24 07:08:10 +02:00
// Check container conditions
2014-05-09 21:43:06 +02:00
foreach (ProfileCondition i in conditions)
2014-04-24 07:08:10 +02:00
{
2016-10-03 08:28:45 +02:00
if (!conditionProcessor.IsVideoConditionSatisfied(i, width, height, bitDepth, videoBitrate, videoProfile, videoLevel, videoFramerate, packetLength, timestamp, isAnamorphic, refFrames, numVideoStreams, numAudioStreams, videoCodecTag, isAvc))
2014-05-09 21:43:06 +02:00
{
2015-04-14 21:11:29 +02:00
LogConditionFailure(profile, "VideoContainerProfile", i, mediaSource);
2015-04-04 21:35:29 +02:00
2014-05-09 21:43:06 +02:00
return null;
}
2014-04-24 07:08:10 +02:00
}
2014-05-08 22:09:53 +02:00
string videoCodec = videoStream == null ? null : videoStream.Codec;
2014-04-24 07:08:10 +02:00
if (string.IsNullOrEmpty(videoCodec))
{
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, DirectPlay=false. Reason=Unknown video codec. Path: {1}",
2015-04-04 21:35:29 +02:00
profile.Name ?? "Unknown Profile",
mediaSource.Path ?? "Unknown path");
2014-04-24 07:08:10 +02:00
return null;
}
2014-05-09 21:43:06 +02:00
conditions = new List<ProfileCondition>();
foreach (CodecProfile i in profile.CodecProfiles)
{
2015-05-07 05:11:51 +02:00
if (i.Type == CodecType.Video && i.ContainsCodec(videoCodec, container))
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-10-03 08:28:45 +02:00
if (!conditionProcessor.IsVideoConditionSatisfied(applyCondition, width, height, bitDepth, videoBitrate, videoProfile, videoLevel, videoFramerate, packetLength, timestamp, isAnamorphic, refFrames, numVideoStreams, numAudioStreams, videoCodecTag, isAvc))
2016-07-09 19:39:04 +02:00
{
LogConditionFailure(profile, "VideoCodecProfile", applyCondition, mediaSource);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
conditions.Add(c);
}
2014-07-01 06:06:28 +02:00
}
}
2014-05-09 21:43:06 +02:00
}
2014-04-24 07:08:10 +02:00
2014-05-09 21:43:06 +02:00
foreach (ProfileCondition i in conditions)
2014-04-24 07:08:10 +02:00
{
2016-10-03 08:28:45 +02:00
if (!conditionProcessor.IsVideoConditionSatisfied(i, width, height, bitDepth, videoBitrate, videoProfile, videoLevel, videoFramerate, packetLength, timestamp, isAnamorphic, refFrames, numVideoStreams, numAudioStreams, videoCodecTag, isAvc))
2014-05-09 21:43:06 +02:00
{
2015-04-14 21:11:29 +02:00
LogConditionFailure(profile, "VideoCodecProfile", i, mediaSource);
2015-04-04 21:35:29 +02:00
2014-05-09 21:43:06 +02:00
return null;
}
2014-04-24 07:08:10 +02:00
}
if (audioStream != null)
{
2014-05-08 22:09:53 +02:00
string audioCodec = audioStream.Codec;
2014-04-24 07:08:10 +02:00
if (string.IsNullOrEmpty(audioCodec))
{
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, DirectPlay=false. Reason=Unknown audio codec. Path: {1}",
2015-04-04 21:35:29 +02:00
profile.Name ?? "Unknown Profile",
mediaSource.Path ?? "Unknown path");
2014-04-24 07:08:10 +02:00
return null;
}
2014-05-09 21:43:06 +02:00
conditions = new List<ProfileCondition>();
2016-07-09 19:39:04 +02:00
bool? isSecondaryAudio = audioStream == null ? null : mediaSource.IsSecondaryAudio(audioStream);
2014-05-09 21:43:06 +02:00
foreach (CodecProfile i in profile.CodecProfiles)
{
2015-05-07 05:11:51 +02:00
if (i.Type == CodecType.VideoAudio && i.ContainsCodec(audioCodec, container))
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
bool applyConditions = true;
foreach (ProfileCondition applyCondition in i.ApplyConditions)
2014-07-01 06:06:28 +02:00
{
2016-07-09 19:39:04 +02:00
if (!conditionProcessor.IsVideoAudioConditionSatisfied(applyCondition, audioChannels, audioBitrate, audioProfile, isSecondaryAudio))
{
LogConditionFailure(profile, "VideoAudioCodecProfile", applyCondition, mediaSource);
applyConditions = false;
break;
}
}
if (applyConditions)
{
foreach (ProfileCondition c in i.Conditions)
{
conditions.Add(c);
}
2014-07-01 06:06:28 +02:00
}
}
2014-05-09 21:43:06 +02:00
}
2014-04-24 07:08:10 +02:00
2014-05-09 21:43:06 +02:00
foreach (ProfileCondition i in conditions)
2014-04-24 07:08:10 +02:00
{
if (!conditionProcessor.IsVideoAudioConditionSatisfied(i, audioChannels, audioBitrate, audioProfile, isSecondaryAudio))
2014-05-09 21:43:06 +02:00
{
2015-04-14 21:11:29 +02:00
LogConditionFailure(profile, "VideoAudioCodecProfile", i, mediaSource);
2015-09-20 19:28:32 +02:00
2014-05-09 21:43:06 +02:00
return null;
}
2014-04-24 07:08:10 +02:00
}
}
2015-04-17 19:46:41 +02:00
if (isEligibleForDirectStream && mediaSource.SupportsDirectStream)
2015-03-17 04:51:35 +01:00
{
2015-04-17 19:46:41 +02:00
return PlayMethod.DirectStream;
2015-03-17 04:51:35 +01:00
}
2015-03-23 21:06:06 +01:00
return null;
2014-04-24 07:08:10 +02:00
}
2015-04-14 21:11:29 +02:00
private void LogConditionFailure(DeviceProfile profile, string type, ProfileCondition condition, MediaSourceInfo mediaSource)
{
2015-10-05 05:24:24 +02:00
_logger.Info("Profile: {0}, DirectPlay=false. Reason={1}.{2} Condition: {3}. ConditionValue: {4}. IsRequired: {5}. Path: {6}",
2015-04-14 21:11:29 +02:00
type,
profile.Name ?? "Unknown Profile",
condition.Property,
condition.Condition,
condition.Value ?? string.Empty,
condition.IsRequired,
mediaSource.Path ?? "Unknown path");
}
private bool IsEligibleForDirectPlay(MediaSourceInfo item,
int? maxBitrate,
MediaStream subtitleStream,
2015-07-13 23:26:11 +02:00
VideoOptions options,
PlayMethod playMethod)
2014-04-02 00:23:07 +02:00
{
if (subtitleStream != null)
2014-04-02 00:23:07 +02:00
{
2016-04-03 01:39:08 +02:00
SubtitleProfile subtitleProfile = GetSubtitleProfile(subtitleStream, options.Profile.SubtitleProfiles, playMethod);
2015-01-15 06:54:42 +01:00
if (subtitleProfile.Method != SubtitleDeliveryMethod.External && subtitleProfile.Method != SubtitleDeliveryMethod.Embed)
{
2015-10-05 05:24:24 +02:00
_logger.Info("Not eligible for {0} due to unsupported subtitles", playMethod);
return false;
}
2014-04-02 00:23:07 +02:00
}
return IsAudioEligibleForDirectPlay(item, maxBitrate);
2014-04-06 19:53:23 +02:00
}
2016-04-03 01:39:08 +02:00
public static SubtitleProfile GetSubtitleProfile(MediaStream subtitleStream, SubtitleProfile[] subtitleProfiles, PlayMethod playMethod)
{
2015-09-20 19:28:32 +02:00
if (playMethod != PlayMethod.Transcode && !subtitleStream.IsExternal)
2015-07-14 18:39:34 +02:00
{
// Look for supported embedded subs
foreach (SubtitleProfile profile in subtitleProfiles)
{
if (!profile.SupportsLanguage(subtitleStream.Language))
{
continue;
}
2015-07-31 04:34:15 +02:00
if (profile.Method != SubtitleDeliveryMethod.Embed)
{
continue;
}
if (subtitleStream.IsTextSubtitleStream == MediaStream.IsTextFormat(profile.Format) && StringHelper.EqualsIgnoreCase(profile.Format, subtitleStream.Codec))
2015-07-14 18:39:34 +02:00
{
return profile;
}
}
}
2016-04-03 01:39:08 +02:00
// Look for an external or hls profile that matches the stream type (text/graphical) and doesn't require conversion
2016-04-03 03:19:27 +02:00
return GetExternalSubtitleProfile(subtitleStream, subtitleProfiles, playMethod, false) ?? GetExternalSubtitleProfile(subtitleStream, subtitleProfiles, playMethod, true) ?? new SubtitleProfile
2016-04-03 01:39:08 +02:00
{
Method = SubtitleDeliveryMethod.Encode,
Format = subtitleStream.Codec
};
}
private static SubtitleProfile GetExternalSubtitleProfile(MediaStream subtitleStream, SubtitleProfile[] subtitleProfiles, PlayMethod playMethod, bool allowConversion)
{
2015-03-23 18:19:21 +01:00
foreach (SubtitleProfile profile in subtitleProfiles)
2015-09-20 19:28:32 +02:00
{
2016-03-06 22:31:56 +01:00
if (profile.Method != SubtitleDeliveryMethod.External && profile.Method != SubtitleDeliveryMethod.Hls)
2015-09-20 19:28:32 +02:00
{
continue;
}
2015-03-31 18:24:16 +02:00
2016-03-07 19:50:58 +01:00
if (profile.Method == SubtitleDeliveryMethod.Hls && playMethod != PlayMethod.Transcode)
{
continue;
}
2015-03-28 21:22:27 +01:00
if (!profile.SupportsLanguage(subtitleStream.Language))
{
continue;
}
2016-03-06 22:31:56 +01:00
if ((profile.Method == SubtitleDeliveryMethod.External && subtitleStream.IsTextSubtitleStream == MediaStream.IsTextFormat(profile.Format)) ||
(profile.Method == SubtitleDeliveryMethod.Hls && subtitleStream.IsTextSubtitleStream))
{
2015-09-20 19:28:32 +02:00
bool requiresConversion = !StringHelper.EqualsIgnoreCase(subtitleStream.Codec, profile.Format);
2015-09-13 23:32:02 +02:00
2016-06-25 07:16:54 +02:00
if (!requiresConversion)
2015-03-31 18:24:16 +02:00
{
2016-06-25 07:16:54 +02:00
return profile;
2016-04-03 01:39:08 +02:00
}
2016-06-25 07:16:54 +02:00
if (!allowConversion)
2016-04-03 01:39:08 +02:00
{
2016-06-25 07:16:54 +02:00
continue;
2016-04-03 01:39:08 +02:00
}
2016-06-25 07:16:54 +02:00
if (subtitleStream.IsTextSubtitleStream && subtitleStream.SupportsExternalStream && subtitleStream.SupportsSubtitleConversionTo(profile.Format))
2016-04-03 01:39:08 +02:00
{
return profile;
}
}
2015-02-02 19:14:02 +01:00
}
2016-04-03 01:39:08 +02:00
return null;
}
private bool IsAudioEligibleForDirectPlay(MediaSourceInfo item, int? maxBitrate)
2014-04-06 19:53:23 +02:00
{
2016-04-13 22:49:16 +02:00
if (!maxBitrate.HasValue)
2015-07-10 20:30:42 +02:00
{
2016-04-13 22:49:16 +02:00
_logger.Info("Cannot direct play due to unknown supported bitrate");
return false;
2015-07-10 20:30:42 +02:00
}
2016-04-13 22:49:16 +02:00
if (!item.Bitrate.HasValue)
{
_logger.Info("Cannot direct play due to unknown content bitrate");
return false;
}
if (item.Bitrate.Value > maxBitrate.Value)
{
_logger.Info("Bitrate exceeds DirectPlay limit");
return false;
}
return true;
2014-04-02 00:23:07 +02:00
}
private void ValidateInput(VideoOptions options)
{
ValidateAudioInput(options);
if (options.AudioStreamIndex.HasValue && string.IsNullOrEmpty(options.MediaSourceId))
{
throw new ArgumentException("MediaSourceId is required when a specific audio stream is requested");
}
if (options.SubtitleStreamIndex.HasValue && string.IsNullOrEmpty(options.MediaSourceId))
{
throw new ArgumentException("MediaSourceId is required when a specific subtitle stream is requested");
}
}
private void ValidateAudioInput(AudioOptions options)
{
if (string.IsNullOrEmpty(options.ItemId))
{
throw new ArgumentException("ItemId is required");
}
if (string.IsNullOrEmpty(options.DeviceId))
{
throw new ArgumentException("DeviceId is required");
}
if (options.Profile == null)
{
throw new ArgumentException("Profile is required");
}
if (options.MediaSources == null)
{
throw new ArgumentException("MediaSources is required");
}
}
private void ApplyTranscodingConditions(StreamInfo item, IEnumerable<ProfileCondition> conditions)
{
2014-05-09 21:43:06 +02:00
foreach (ProfileCondition condition in conditions)
2014-04-02 00:23:07 +02:00
{
2014-05-08 22:09:53 +02:00
string value = condition.Value;
2014-04-02 00:23:07 +02:00
2014-05-09 21:43:06 +02:00
if (string.IsNullOrEmpty(value))
{
continue;
}
2014-12-14 21:01:26 +01:00
// No way to express this
if (condition.Condition == ProfileConditionType.GreaterThanEqual)
{
continue;
}
2014-04-02 00:23:07 +02:00
switch (condition.Property)
{
case ProfileConditionValue.AudioBitrate:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.AudioBitrate = num;
}
break;
}
case ProfileConditionValue.AudioChannels:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.MaxAudioChannels = num;
}
break;
}
2014-06-22 18:25:47 +02:00
case ProfileConditionValue.IsAnamorphic:
2014-12-14 21:01:26 +01:00
case ProfileConditionValue.AudioProfile:
2014-04-02 00:23:07 +02:00
case ProfileConditionValue.Has64BitOffsets:
2014-04-24 07:08:10 +02:00
case ProfileConditionValue.PacketLength:
case ProfileConditionValue.NumAudioStreams:
case ProfileConditionValue.NumVideoStreams:
case ProfileConditionValue.IsSecondaryAudio:
2014-04-24 07:08:10 +02:00
case ProfileConditionValue.VideoTimestamp:
2014-04-02 00:23:07 +02:00
{
// Not supported yet
break;
}
2014-09-23 06:05:29 +02:00
case ProfileConditionValue.RefFrames:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
{
item.MaxRefFrames = num;
}
break;
}
case ProfileConditionValue.VideoBitDepth:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
{
item.MaxVideoBitDepth = num;
}
break;
}
2014-04-24 07:08:10 +02:00
case ProfileConditionValue.VideoProfile:
{
2014-10-20 05:04:45 +02:00
item.VideoProfile = (value ?? string.Empty).Split('|')[0];
2014-04-24 07:08:10 +02:00
break;
}
2014-04-02 00:23:07 +02:00
case ProfileConditionValue.Height:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.MaxHeight = num;
}
break;
}
case ProfileConditionValue.VideoBitrate:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.VideoBitrate = num;
}
break;
}
case ProfileConditionValue.VideoFramerate:
{
2014-06-23 18:05:19 +02:00
float num;
if (FloatHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.MaxFramerate = num;
}
break;
}
case ProfileConditionValue.VideoLevel:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.VideoLevel = num;
}
break;
}
case ProfileConditionValue.Width:
{
int num;
if (IntHelper.TryParseCultureInvariant(value, out num))
2014-04-02 00:23:07 +02:00
{
item.MaxWidth = num;
}
break;
}
}
}
}
2014-04-06 19:53:23 +02:00
private bool IsAudioDirectPlaySupported(DirectPlayProfile profile, MediaSourceInfo item, MediaStream audioStream)
2014-04-02 00:23:07 +02:00
{
if (profile.Container.Length > 0)
{
// Check container type
2014-05-08 22:09:53 +02:00
string mediaContainer = item.Container ?? string.Empty;
2014-05-09 21:43:06 +02:00
bool any = false;
foreach (string i in profile.GetContainers())
{
if (StringHelper.EqualsIgnoreCase(i, mediaContainer))
2014-05-09 21:43:06 +02:00
{
any = true;
break;
}
}
if (!any)
2014-04-02 00:23:07 +02:00
{
return false;
}
}
// Check audio codec
List<string> audioCodecs = profile.GetAudioCodecs();
if (audioCodecs.Count > 0)
{
// Check audio codecs
string audioCodec = audioStream == null ? null : audioStream.Codec;
if (string.IsNullOrEmpty(audioCodec) || !ListHelper.ContainsIgnoreCase(audioCodecs, audioCodec))
{
return false;
}
}
2014-04-02 00:23:07 +02:00
return true;
}
2014-04-06 19:53:23 +02:00
private bool IsVideoDirectPlaySupported(DirectPlayProfile profile, MediaSourceInfo item, MediaStream videoStream, MediaStream audioStream)
2014-04-02 00:23:07 +02:00
{
if (profile.Container.Length > 0)
{
// Check container type
2014-05-08 22:09:53 +02:00
string mediaContainer = item.Container ?? string.Empty;
2014-05-09 21:43:06 +02:00
bool any = false;
foreach (string i in profile.GetContainers())
{
if (StringHelper.EqualsIgnoreCase(i, mediaContainer))
2014-05-09 21:43:06 +02:00
{
any = true;
break;
}
}
if (!any)
2014-04-02 00:23:07 +02:00
{
return false;
}
}
// Check video codec
2014-05-08 22:09:53 +02:00
List<string> videoCodecs = profile.GetVideoCodecs();
2014-04-02 00:23:07 +02:00
if (videoCodecs.Count > 0)
{
2014-05-08 22:09:53 +02:00
string videoCodec = videoStream == null ? null : videoStream.Codec;
2014-06-05 04:32:40 +02:00
if (string.IsNullOrEmpty(videoCodec) || !ListHelper.ContainsIgnoreCase(videoCodecs, videoCodec))
2014-04-02 00:23:07 +02:00
{
return false;
}
}
// Check audio codec
2014-05-08 22:09:53 +02:00
List<string> audioCodecs = profile.GetAudioCodecs();
2014-04-02 00:23:07 +02:00
if (audioCodecs.Count > 0)
{
// Check audio codecs
2014-05-08 22:09:53 +02:00
string audioCodec = audioStream == null ? null : audioStream.Codec;
2014-06-05 04:32:40 +02:00
if (string.IsNullOrEmpty(audioCodec) || !ListHelper.ContainsIgnoreCase(audioCodecs, audioCodec))
2014-04-02 00:23:07 +02:00
{
return false;
}
}
return true;
}
}
2015-09-20 19:34:05 +02:00
}