mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
separate deinterlacing params by video codec
This commit is contained in:
parent
164cea3fb4
commit
b4851d4789
@ -2208,7 +2208,7 @@ namespace Emby.Server.Implementations
|
|||||||
{
|
{
|
||||||
var updateLevel = SystemUpdateLevel;
|
var updateLevel = SystemUpdateLevel;
|
||||||
var cacheLength = updateLevel == PackageVersionClass.Release ?
|
var cacheLength = updateLevel == PackageVersionClass.Release ?
|
||||||
TimeSpan.FromHours(4) :
|
TimeSpan.FromHours(12) :
|
||||||
TimeSpan.FromMinutes(5);
|
TimeSpan.FromMinutes(5);
|
||||||
|
|
||||||
var result = await new GithubUpdater(HttpClient, JsonSerializer).CheckForUpdateResult("MediaBrowser",
|
var result = await new GithubUpdater(HttpClient, JsonSerializer).CheckForUpdateResult("MediaBrowser",
|
||||||
|
@ -571,7 +571,7 @@ namespace Emby.Server.Implementations.Dto
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(item is LiveTvProgram) || fields.Contains(ItemFields.PlayAccess))
|
if (/*!(item is LiveTvProgram) ||*/ fields.Contains(ItemFields.PlayAccess))
|
||||||
{
|
{
|
||||||
dto.PlayAccess = item.GetPlayAccess(user);
|
dto.PlayAccess = item.GetPlayAccess(user);
|
||||||
}
|
}
|
||||||
|
@ -67,10 +67,6 @@ namespace Emby.Server.Implementations.EntryPoints
|
|||||||
{
|
{
|
||||||
IntervalTicks = TimeSpan.FromDays(1).Ticks,
|
IntervalTicks = TimeSpan.FromDays(1).Ticks,
|
||||||
Type = TaskTriggerInfo.TriggerInterval
|
Type = TaskTriggerInfo.TriggerInterval
|
||||||
},
|
|
||||||
new TaskTriggerInfo
|
|
||||||
{
|
|
||||||
Type = TaskTriggerInfo.TriggerStartup
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -796,12 +796,13 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
|
|
||||||
if (videoStream.IsInterlaced)
|
if (videoStream.IsInterlaced)
|
||||||
{
|
{
|
||||||
if (request.DeInterlace)
|
if (state.DeInterlace(videoStream.Codec))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (videoStream.IsAnamorphic ?? false)
|
if (videoStream.IsAnamorphic ?? false)
|
||||||
{
|
{
|
||||||
if (request.RequireNonAnamorphic)
|
if (request.RequireNonAnamorphic)
|
||||||
@ -1357,7 +1358,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
filters.Add("hwupload");
|
filters.Add("hwupload");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.DeInterlace && !string.Equals(outputVideoCodec, "h264_vaapi", StringComparison.OrdinalIgnoreCase))
|
if (state.DeInterlace("h264") && !string.Equals(outputVideoCodec, "h264_vaapi", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
if (string.Equals(options.DeinterlaceMethod, "bobandweave", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(options.DeinterlaceMethod, "bobandweave", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
@ -1799,11 +1800,6 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
state.InternalSubtitleStreamOffset = mediaStreams.Where(i => i.Type == MediaStreamType.Subtitle && !i.IsExternal).ToList().IndexOf(state.SubtitleStream);
|
state.InternalSubtitleStreamOffset = mediaStreams.Where(i => i.Type == MediaStreamType.Subtitle && !i.IsExternal).ToList().IndexOf(state.SubtitleStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.VideoStream != null && state.VideoStream.IsInterlaced)
|
|
||||||
{
|
|
||||||
state.DeInterlace = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
EnforceResolutionLimit(state);
|
EnforceResolutionLimit(state);
|
||||||
|
|
||||||
NormalizeSubtitleEmbed(state);
|
NormalizeSubtitleEmbed(state);
|
||||||
|
@ -160,7 +160,26 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
|
|
||||||
public int? OutputAudioBitrate;
|
public int? OutputAudioBitrate;
|
||||||
public int? OutputAudioChannels;
|
public int? OutputAudioChannels;
|
||||||
public bool DeInterlace { get; set; }
|
|
||||||
|
public bool DeInterlace(string videoCodec)
|
||||||
|
{
|
||||||
|
// Support general param
|
||||||
|
if (BaseRequest.DeInterlace)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(videoCodec))
|
||||||
|
{
|
||||||
|
if (string.Equals(BaseRequest.GetOption(videoCodec, "deinterlace"), "true", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public bool IsVideoRequest { get; set; }
|
public bool IsVideoRequest { get; set; }
|
||||||
public TranscodingJobType TranscodingType { get; set; }
|
public TranscodingJobType TranscodingType { get; set; }
|
||||||
|
|
||||||
@ -435,6 +454,28 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 bool? IsTargetInterlaced
|
public bool? IsTargetInterlaced
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -444,7 +485,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
return VideoStream == null ? (bool?)null : VideoStream.IsInterlaced;
|
return VideoStream == null ? (bool?)null : VideoStream.IsInterlaced;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DeInterlace)
|
if (DeInterlace(ActualOutputVideoCodec))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
using System.Globalization;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
using MediaBrowser.Model.Dlna;
|
using MediaBrowser.Model.Dlna;
|
||||||
using MediaBrowser.Model.Services;
|
using MediaBrowser.Model.Services;
|
||||||
|
|
||||||
@ -224,12 +226,41 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
|
|
||||||
public EncodingContext Context { get; set; }
|
public EncodingContext Context { get; set; }
|
||||||
|
|
||||||
|
public void SetOption(string qualifier, string name, string value)
|
||||||
|
{
|
||||||
|
SetOption(qualifier + "-" + name, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Dictionary<string, string> StreamOptions { get; private set; }
|
||||||
|
|
||||||
|
public void SetOption(string name, string value)
|
||||||
|
{
|
||||||
|
StreamOptions[name] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetOption(string qualifier, string name)
|
||||||
|
{
|
||||||
|
return GetOption(qualifier + "-" + name);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetOption(string name)
|
||||||
|
{
|
||||||
|
string value;
|
||||||
|
if (StreamOptions.TryGetValue(name, out value))
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public BaseEncodingJobOptions()
|
public BaseEncodingJobOptions()
|
||||||
{
|
{
|
||||||
EnableAutoStreamCopy = true;
|
EnableAutoStreamCopy = true;
|
||||||
AllowVideoStreamCopy = true;
|
AllowVideoStreamCopy = true;
|
||||||
AllowAudioStreamCopy = true;
|
AllowAudioStreamCopy = true;
|
||||||
Context = EncodingContext.Streaming;
|
Context = EncodingContext.Streaming;
|
||||||
|
StreamOptions = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -406,7 +406,7 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions);
|
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions, null, false);
|
||||||
|
|
||||||
// Honor requested max channels
|
// Honor requested max channels
|
||||||
if (options.MaxAudioChannels.HasValue)
|
if (options.MaxAudioChannels.HasValue)
|
||||||
@ -769,7 +769,7 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
playlistItem.AudioStreamIndex = audioStreamIndex;
|
playlistItem.AudioStreamIndex = audioStreamIndex;
|
||||||
ConditionProcessor conditionProcessor = new ConditionProcessor();
|
ConditionProcessor conditionProcessor = new ConditionProcessor();
|
||||||
|
|
||||||
var videoTranscodingConditions = new List<ProfileCondition>();
|
var isFirstAppliedCodecProfile = true;
|
||||||
foreach (CodecProfile i in options.Profile.CodecProfiles)
|
foreach (CodecProfile i in options.Profile.CodecProfiles)
|
||||||
{
|
{
|
||||||
if (i.Type == CodecType.Video && i.ContainsCodec(transcodingProfile.VideoCodec, transcodingProfile.Container))
|
if (i.Type == CodecType.Video && i.ContainsCodec(transcodingProfile.VideoCodec, transcodingProfile.Container))
|
||||||
@ -786,7 +786,7 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
|
|
||||||
if (!conditionProcessor.IsVideoAudioConditionSatisfied(applyCondition, audioChannels, inputAudioBitrate, inputAudioSampleRate, inputAudioBitDepth, audioProfile, isSecondaryAudio))
|
if (!conditionProcessor.IsVideoAudioConditionSatisfied(applyCondition, audioChannels, inputAudioBitrate, inputAudioSampleRate, inputAudioBitDepth, audioProfile, isSecondaryAudio))
|
||||||
{
|
{
|
||||||
LogConditionFailure(options.Profile, "AudioCodecProfile", applyCondition, item);
|
LogConditionFailure(options.Profile, "VideoAudioCodecProfile", applyCondition, item);
|
||||||
applyConditions = false;
|
applyConditions = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -794,15 +794,14 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
|
|
||||||
if (applyConditions)
|
if (applyConditions)
|
||||||
{
|
{
|
||||||
foreach (ProfileCondition c in i.Conditions)
|
foreach (var transcodingVideoCodec in ContainerProfile.SplitValue(transcodingProfile.VideoCodec))
|
||||||
{
|
{
|
||||||
videoTranscodingConditions.Add(c);
|
ApplyTranscodingConditions(playlistItem, i.Conditions, transcodingVideoCodec, !isFirstAppliedCodecProfile);
|
||||||
|
isFirstAppliedCodecProfile = false;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ApplyTranscodingConditions(playlistItem, videoTranscodingConditions);
|
|
||||||
|
|
||||||
var audioTranscodingConditions = new List<ProfileCondition>();
|
var audioTranscodingConditions = new List<ProfileCondition>();
|
||||||
foreach (CodecProfile i in options.Profile.CodecProfiles)
|
foreach (CodecProfile i in options.Profile.CodecProfiles)
|
||||||
@ -878,7 +877,7 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Do this after initial values are set to account for greater than/less than conditions
|
// Do this after initial values are set to account for greater than/less than conditions
|
||||||
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions);
|
ApplyTranscodingConditions(playlistItem, audioTranscodingConditions, null, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
playlistItem.TranscodeReasons = transcodeReasons;
|
playlistItem.TranscodeReasons = transcodeReasons;
|
||||||
@ -1407,7 +1406,7 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ApplyTranscodingConditions(StreamInfo item, IEnumerable<ProfileCondition> conditions)
|
private void ApplyTranscodingConditions(StreamInfo item, IEnumerable<ProfileCondition> conditions, string qualifier, bool qualifiedOnly)
|
||||||
{
|
{
|
||||||
foreach (ProfileCondition condition in conditions)
|
foreach (ProfileCondition condition in conditions)
|
||||||
{
|
{
|
||||||
@ -1428,6 +1427,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
{
|
{
|
||||||
case ProfileConditionValue.AudioBitrate:
|
case ProfileConditionValue.AudioBitrate:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1448,6 +1452,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.AudioChannels:
|
case ProfileConditionValue.AudioChannels:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1468,6 +1477,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.IsAvc:
|
case ProfileConditionValue.IsAvc:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
bool isAvc;
|
bool isAvc;
|
||||||
if (bool.TryParse(value, out isAvc))
|
if (bool.TryParse(value, out isAvc))
|
||||||
{
|
{
|
||||||
@ -1484,6 +1498,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.IsAnamorphic:
|
case ProfileConditionValue.IsAnamorphic:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
bool isAnamorphic;
|
bool isAnamorphic;
|
||||||
if (bool.TryParse(value, out isAnamorphic))
|
if (bool.TryParse(value, out isAnamorphic))
|
||||||
{
|
{
|
||||||
@ -1500,16 +1519,21 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.IsInterlaced:
|
case ProfileConditionValue.IsInterlaced:
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(qualifier))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
bool isInterlaced;
|
bool isInterlaced;
|
||||||
if (bool.TryParse(value, out isInterlaced))
|
if (bool.TryParse(value, out isInterlaced))
|
||||||
{
|
{
|
||||||
if (!isInterlaced && condition.Condition == ProfileConditionType.Equals)
|
if (!isInterlaced && condition.Condition == ProfileConditionType.Equals)
|
||||||
{
|
{
|
||||||
item.DeInterlace = true;
|
item.SetOption(qualifier, "deinterlace", "true");
|
||||||
}
|
}
|
||||||
else if (isInterlaced && condition.Condition == ProfileConditionType.NotEquals)
|
else if (isInterlaced && condition.Condition == ProfileConditionType.NotEquals)
|
||||||
{
|
{
|
||||||
item.DeInterlace = true;
|
item.SetOption(qualifier, "deinterlace", "true");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -1527,6 +1551,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.RefFrames:
|
case ProfileConditionValue.RefFrames:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1547,6 +1576,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.VideoBitDepth:
|
case ProfileConditionValue.VideoBitDepth:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1567,11 +1601,21 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.VideoProfile:
|
case ProfileConditionValue.VideoProfile:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
item.VideoProfile = (value ?? string.Empty).Split('|')[0];
|
item.VideoProfile = (value ?? string.Empty).Split('|')[0];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ProfileConditionValue.Height:
|
case ProfileConditionValue.Height:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1592,6 +1636,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.VideoBitrate:
|
case ProfileConditionValue.VideoBitrate:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1612,6 +1661,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.VideoFramerate:
|
case ProfileConditionValue.VideoFramerate:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
float num;
|
float num;
|
||||||
if (float.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (float.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1632,6 +1686,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.VideoLevel:
|
case ProfileConditionValue.VideoLevel:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
@ -1652,6 +1711,11 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
}
|
}
|
||||||
case ProfileConditionValue.Width:
|
case ProfileConditionValue.Width:
|
||||||
{
|
{
|
||||||
|
if (qualifiedOnly)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
int num;
|
int num;
|
||||||
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
if (int.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out num))
|
||||||
{
|
{
|
||||||
|
@ -22,6 +22,33 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
VideoCodecs = new string[] { };
|
VideoCodecs = new string[] { };
|
||||||
SubtitleCodecs = new string[] { };
|
SubtitleCodecs = new string[] { };
|
||||||
TranscodeReasons = new List<TranscodeReason>();
|
TranscodeReasons = new List<TranscodeReason>();
|
||||||
|
StreamOptions = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetOption(string qualifier, string name, string value)
|
||||||
|
{
|
||||||
|
SetOption(qualifier + "-" + name, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetOption(string name, string value)
|
||||||
|
{
|
||||||
|
StreamOptions[name] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetOption(string qualifier, string name)
|
||||||
|
{
|
||||||
|
return GetOption(qualifier + "-" + name);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetOption(string name)
|
||||||
|
{
|
||||||
|
string value;
|
||||||
|
if (StreamOptions.TryGetValue(name, out value))
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ItemId { get; set; }
|
public string ItemId { get; set; }
|
||||||
@ -44,7 +71,6 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
public bool BreakOnNonKeyFrames { get; set; }
|
public bool BreakOnNonKeyFrames { get; set; }
|
||||||
|
|
||||||
public bool RequireAvc { get; set; }
|
public bool RequireAvc { get; set; }
|
||||||
public bool DeInterlace { get; set; }
|
|
||||||
public bool RequireNonAnamorphic { get; set; }
|
public bool RequireNonAnamorphic { get; set; }
|
||||||
public bool CopyTimestamps { get; set; }
|
public bool CopyTimestamps { get; set; }
|
||||||
public bool EnableSubtitlesInManifest { get; set; }
|
public bool EnableSubtitlesInManifest { get; set; }
|
||||||
@ -92,6 +118,8 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
public List<MediaSourceInfo> AllMediaSources { get; set; }
|
public List<MediaSourceInfo> AllMediaSources { get; set; }
|
||||||
public List<TranscodeReason> TranscodeReasons { get; set; }
|
public List<TranscodeReason> TranscodeReasons { get; set; }
|
||||||
|
|
||||||
|
public Dictionary<string, string> StreamOptions { get; private set; }
|
||||||
|
|
||||||
public string MediaSourceId
|
public string MediaSourceId
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -282,7 +310,16 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
list.Add(new NameValuePair("SubtitleCodec", item.SubtitleStreamIndex.HasValue && item.SubtitleDeliveryMethod == SubtitleDeliveryMethod.Embed ? subtitleCodecs : string.Empty));
|
list.Add(new NameValuePair("SubtitleCodec", item.SubtitleStreamIndex.HasValue && item.SubtitleDeliveryMethod == SubtitleDeliveryMethod.Embed ? subtitleCodecs : string.Empty));
|
||||||
|
|
||||||
list.Add(new NameValuePair("RequireNonAnamorphic", item.RequireNonAnamorphic.ToString().ToLower()));
|
list.Add(new NameValuePair("RequireNonAnamorphic", item.RequireNonAnamorphic.ToString().ToLower()));
|
||||||
list.Add(new NameValuePair("DeInterlace", item.DeInterlace.ToString().ToLower()));
|
|
||||||
|
if (isDlna)
|
||||||
|
{
|
||||||
|
// hack alert
|
||||||
|
// dlna needs to be update to support the qualified params
|
||||||
|
var deinterlace = string.Equals(item.GetOption("h264", "deinterlace"), "true", StringComparison.OrdinalIgnoreCase) ||
|
||||||
|
string.Equals(item.GetOption("mpeg2video", "deinterlace"), "true", StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
list.Add(new NameValuePair("DeInterlace", deinterlace.ToString().ToLower()));
|
||||||
|
}
|
||||||
|
|
||||||
if (!isDlna && isHls)
|
if (!isDlna && isHls)
|
||||||
{
|
{
|
||||||
@ -306,6 +343,19 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
list.Add(new NameValuePair("TranscodeReasons", string.Join(",", item.TranscodeReasons.Distinct().Select(i => i.ToString()).ToArray())));
|
list.Add(new NameValuePair("TranscodeReasons", string.Join(",", item.TranscodeReasons.Distinct().Select(i => i.ToString()).ToArray())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isDlna)
|
||||||
|
{
|
||||||
|
foreach (var pair in item.StreamOptions)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(pair.Value))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
list.Add(new NameValuePair(pair.Key, pair.Value));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -675,10 +725,10 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
return VideoCodecs.Length == 0 ? null : VideoCodecs[0];
|
return VideoCodecs.Length == 0 ? null : VideoCodecs[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Predicts the audio channels that will be in the output stream
|
/// Predicts the audio channels that will be in the output stream
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public long? TargetSize
|
public long? TargetSize
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -763,9 +813,13 @@ namespace MediaBrowser.Model.Dlna
|
|||||||
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
|
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DeInterlace)
|
var videoCodec = TargetVideoCodec;
|
||||||
|
if (!string.IsNullOrWhiteSpace(videoCodec))
|
||||||
{
|
{
|
||||||
return false;
|
if (string.Equals(GetOption(videoCodec, "deinterlace"), "true", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
|
return TargetVideoStream == null ? (bool?)null : TargetVideoStream.IsInterlaced;
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.2.31")]
|
[assembly: AssemblyVersion("3.2.31.1")]
|
||||||
|
Loading…
Reference in New Issue
Block a user