|
|
@ -39,7 +39,6 @@ namespace MediaBrowser.Model.Dlna
|
|
|
|
public bool RequireAvc { get; set; }
|
|
|
|
public bool RequireAvc { get; set; }
|
|
|
|
public bool CopyTimestamps { get; set; }
|
|
|
|
public bool CopyTimestamps { get; set; }
|
|
|
|
public bool EnableSubtitlesInManifest { get; set; }
|
|
|
|
public bool EnableSubtitlesInManifest { get; set; }
|
|
|
|
public bool EnableSplittingOnNonKeyFrames { get; set; }
|
|
|
|
|
|
|
|
public string[] AudioCodecs { get; set; }
|
|
|
|
public string[] AudioCodecs { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int? AudioStreamIndex { get; set; }
|
|
|
|
public int? AudioStreamIndex { get; set; }
|
|
|
@ -267,7 +266,6 @@ namespace MediaBrowser.Model.Dlna
|
|
|
|
list.Add(new NameValuePair("EnableSubtitlesInManifest", item.EnableSubtitlesInManifest.ToString().ToLower()));
|
|
|
|
list.Add(new NameValuePair("EnableSubtitlesInManifest", item.EnableSubtitlesInManifest.ToString().ToLower()));
|
|
|
|
|
|
|
|
|
|
|
|
list.Add(new NameValuePair("Tag", item.MediaSource.ETag ?? string.Empty));
|
|
|
|
list.Add(new NameValuePair("Tag", item.MediaSource.ETag ?? string.Empty));
|
|
|
|
list.Add(new NameValuePair("EnableSplittingOnNonKeyFrames", item.EnableSplittingOnNonKeyFrames.ToString().ToLower()));
|
|
|
|
|
|
|
|
list.Add(new NameValuePair("RequireAvc", item.RequireAvc.ToString().ToLower()));
|
|
|
|
list.Add(new NameValuePair("RequireAvc", item.RequireAvc.ToString().ToLower()));
|
|
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
return list;
|
|
|
|