commit
1aeebef06f
|
@ -119,8 +119,6 @@ namespace MediaBrowser.Api.Library
|
||||||
{
|
{
|
||||||
private readonly IFileOrganizationService _iFileOrganizationService;
|
private readonly IFileOrganizationService _iFileOrganizationService;
|
||||||
|
|
||||||
/// The _json serializer
|
|
||||||
/// </summary>
|
|
||||||
private readonly IJsonSerializer _jsonSerializer;
|
private readonly IJsonSerializer _jsonSerializer;
|
||||||
|
|
||||||
public FileOrganizationService(IFileOrganizationService iFileOrganizationService, IJsonSerializer jsonSerializer)
|
public FileOrganizationService(IFileOrganizationService iFileOrganizationService, IJsonSerializer jsonSerializer)
|
||||||
|
|
|
@ -460,7 +460,7 @@ namespace MediaBrowser.Api.Playback
|
||||||
// Boost volume to 200% when downsampling from 6ch to 2ch
|
// Boost volume to 200% when downsampling from 6ch to 2ch
|
||||||
if (channels.HasValue && channels.Value <= 2)
|
if (channels.HasValue && channels.Value <= 2)
|
||||||
{
|
{
|
||||||
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5)
|
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5 && !ApiEntryPoint.Instance.GetEncodingOptions().DownMixAudioBoost.Equals(1))
|
||||||
{
|
{
|
||||||
volParam = ",volume=" + ApiEntryPoint.Instance.GetEncodingOptions().DownMixAudioBoost.ToString(UsCulture);
|
volParam = ",volume=" + ApiEntryPoint.Instance.GetEncodingOptions().DownMixAudioBoost.ToString(UsCulture);
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,7 @@ namespace MediaBrowser.Dlna.Main
|
||||||
private readonly IDeviceDiscovery _deviceDiscovery;
|
private readonly IDeviceDiscovery _deviceDiscovery;
|
||||||
|
|
||||||
private readonly List<string> _registeredServerIds = new List<string>();
|
private readonly List<string> _registeredServerIds = new List<string>();
|
||||||
|
private bool _ssdpHandlerStarted;
|
||||||
private bool _dlnaServerStarted;
|
private bool _dlnaServerStarted;
|
||||||
|
|
||||||
public DlnaEntryPoint(IServerConfigurationManager config,
|
public DlnaEntryPoint(IServerConfigurationManager config,
|
||||||
|
@ -78,12 +79,22 @@ namespace MediaBrowser.Dlna.Main
|
||||||
|
|
||||||
public void Run()
|
public void Run()
|
||||||
{
|
{
|
||||||
StartSsdpHandler();
|
|
||||||
ReloadComponents();
|
ReloadComponents();
|
||||||
|
|
||||||
|
_config.ConfigurationUpdated += _config_ConfigurationUpdated;
|
||||||
_config.NamedConfigurationUpdated += _config_NamedConfigurationUpdated;
|
_config.NamedConfigurationUpdated += _config_NamedConfigurationUpdated;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool _lastEnableUpnP;
|
||||||
|
void _config_ConfigurationUpdated(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (_lastEnableUpnP != _config.Configuration.EnableUPnP)
|
||||||
|
{
|
||||||
|
ReloadComponents();
|
||||||
|
}
|
||||||
|
_lastEnableUpnP = _config.Configuration.EnableUPnP;
|
||||||
|
}
|
||||||
|
|
||||||
void _config_NamedConfigurationUpdated(object sender, ConfigurationUpdateEventArgs e)
|
void _config_NamedConfigurationUpdated(object sender, ConfigurationUpdateEventArgs e)
|
||||||
{
|
{
|
||||||
if (string.Equals(e.Key, "dlna", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(e.Key, "dlna", StringComparison.OrdinalIgnoreCase))
|
||||||
|
@ -94,10 +105,27 @@ namespace MediaBrowser.Dlna.Main
|
||||||
|
|
||||||
private void ReloadComponents()
|
private void ReloadComponents()
|
||||||
{
|
{
|
||||||
var isServerStarted = _dlnaServerStarted;
|
|
||||||
|
|
||||||
var options = _config.GetDlnaConfiguration();
|
var options = _config.GetDlnaConfiguration();
|
||||||
|
|
||||||
|
if (!options.EnableServer && !options.EnablePlayTo && !_config.Configuration.EnableUPnP)
|
||||||
|
{
|
||||||
|
if (_ssdpHandlerStarted)
|
||||||
|
{
|
||||||
|
// Sat/ip live tv depends on device discovery, as well as hd homerun detection
|
||||||
|
// In order to allow this to be disabled, we need a modular way of knowing if there are
|
||||||
|
// any parts of the system that are dependant on it
|
||||||
|
// DisposeSsdpHandler();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!_ssdpHandlerStarted)
|
||||||
|
{
|
||||||
|
StartSsdpHandler();
|
||||||
|
}
|
||||||
|
|
||||||
|
var isServerStarted = _dlnaServerStarted;
|
||||||
|
|
||||||
if (options.EnableServer && !isServerStarted)
|
if (options.EnableServer && !isServerStarted)
|
||||||
{
|
{
|
||||||
StartDlnaServer();
|
StartDlnaServer();
|
||||||
|
@ -124,8 +152,9 @@ namespace MediaBrowser.Dlna.Main
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_ssdpHandler.Start();
|
_ssdpHandler.Start();
|
||||||
|
_ssdpHandlerStarted = true;
|
||||||
|
|
||||||
((DeviceDiscovery)_deviceDiscovery).Start(_ssdpHandler);
|
StartDeviceDiscovery();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
@ -133,6 +162,48 @@ namespace MediaBrowser.Dlna.Main
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void StartDeviceDiscovery()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((DeviceDiscovery)_deviceDiscovery).Start(_ssdpHandler);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Error starting device discovery", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DisposeDeviceDiscovery()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((DeviceDiscovery)_deviceDiscovery).Dispose();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Error stopping device discovery", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DisposeSsdpHandler()
|
||||||
|
{
|
||||||
|
DisposeDeviceDiscovery();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((DeviceDiscovery)_deviceDiscovery).Dispose();
|
||||||
|
|
||||||
|
_ssdpHandler.Dispose();
|
||||||
|
|
||||||
|
_ssdpHandlerStarted = false;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.ErrorException("Error stopping ssdp handlers", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void StartDlnaServer()
|
public void StartDlnaServer()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
@ -234,6 +305,7 @@ namespace MediaBrowser.Dlna.Main
|
||||||
{
|
{
|
||||||
DisposeDlnaServer();
|
DisposeDlnaServer();
|
||||||
DisposePlayToManager();
|
DisposePlayToManager();
|
||||||
|
DisposeSsdpHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DisposeDlnaServer()
|
public void DisposeDlnaServer()
|
||||||
|
|
|
@ -1008,7 +1008,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
// Boost volume to 200% when downsampling from 6ch to 2ch
|
// Boost volume to 200% when downsampling from 6ch to 2ch
|
||||||
if (channels.HasValue && channels.Value <= 2)
|
if (channels.HasValue && channels.Value <= 2)
|
||||||
{
|
{
|
||||||
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5)
|
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5 && !GetEncodingOptions().DownMixAudioBoost.Equals(1))
|
||||||
{
|
{
|
||||||
volParam = ",volume=" + GetEncodingOptions().DownMixAudioBoost.ToString(UsCulture);
|
volParam = ",volume=" + GetEncodingOptions().DownMixAudioBoost.ToString(UsCulture);
|
||||||
}
|
}
|
||||||
|
|
|
@ -432,6 +432,7 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||||
{
|
{
|
||||||
stream.Language = GetDictionaryValue(streamInfo.tags, "language");
|
stream.Language = GetDictionaryValue(streamInfo.tags, "language");
|
||||||
stream.Comment = GetDictionaryValue(streamInfo.tags, "comment");
|
stream.Comment = GetDictionaryValue(streamInfo.tags, "comment");
|
||||||
|
stream.Title = GetDictionaryValue(streamInfo.tags, "title");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.Equals(streamInfo.codec_type, "audio", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(streamInfo.codec_type, "audio", StringComparison.OrdinalIgnoreCase))
|
||||||
|
@ -540,9 +541,24 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||||
stream.IsForced = string.Equals(isForced, "1", StringComparison.OrdinalIgnoreCase);
|
stream.IsForced = string.Equals(isForced, "1", StringComparison.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NormalizeStreamTitle(stream);
|
||||||
|
|
||||||
return stream;
|
return stream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void NormalizeStreamTitle(MediaStream stream)
|
||||||
|
{
|
||||||
|
if (string.Equals(stream.Title, "sdh", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
stream.Title = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stream.Type == MediaStreamType.EmbeddedImage)
|
||||||
|
{
|
||||||
|
stream.Title = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a string from an FFProbeResult tags dictionary
|
/// Gets a string from an FFProbeResult tags dictionary
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
using MediaBrowser.Model.Dlna;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using MediaBrowser.Model.Dlna;
|
||||||
using MediaBrowser.Model.Extensions;
|
using MediaBrowser.Model.Extensions;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
@ -34,6 +36,91 @@ namespace MediaBrowser.Model.Entities
|
||||||
/// <value>The comment.</value>
|
/// <value>The comment.</value>
|
||||||
public string Comment { get; set; }
|
public string Comment { get; set; }
|
||||||
|
|
||||||
|
public string Title { get; set; }
|
||||||
|
|
||||||
|
public string DisplayTitle
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(Title))
|
||||||
|
{
|
||||||
|
return Title;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Type == MediaStreamType.Audio)
|
||||||
|
{
|
||||||
|
List<string> attributes = new List<string>();
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(Language))
|
||||||
|
{
|
||||||
|
attributes.Add(Language);
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrEmpty(Codec) && !StringHelper.EqualsIgnoreCase(Codec, "dca"))
|
||||||
|
{
|
||||||
|
attributes.Add(Codec);
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrEmpty(Profile) && !StringHelper.EqualsIgnoreCase(Profile, "lc"))
|
||||||
|
{
|
||||||
|
attributes.Add(Profile);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Channels.HasValue)
|
||||||
|
{
|
||||||
|
attributes.Add(StringHelper.ToStringCultureInvariant(Channels.Value) + " ch");
|
||||||
|
}
|
||||||
|
|
||||||
|
string name = string.Join(" ", attributes.ToArray());
|
||||||
|
|
||||||
|
if (IsDefault)
|
||||||
|
{
|
||||||
|
name += " (D)";
|
||||||
|
}
|
||||||
|
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Type == MediaStreamType.Subtitle)
|
||||||
|
{
|
||||||
|
List<string> attributes = new List<string>();
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(Language))
|
||||||
|
{
|
||||||
|
attributes.Add(Language);
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrEmpty(Codec))
|
||||||
|
{
|
||||||
|
attributes.Add(Codec);
|
||||||
|
}
|
||||||
|
|
||||||
|
string name = string.Join(" ", attributes.ToArray());
|
||||||
|
|
||||||
|
if (IsDefault)
|
||||||
|
{
|
||||||
|
name += " (D)";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsForced)
|
||||||
|
{
|
||||||
|
name += " (F)";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsExternal)
|
||||||
|
{
|
||||||
|
name += " (EXT)";
|
||||||
|
}
|
||||||
|
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Type == MediaStreamType.Video)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public string NalLengthSize { get; set; }
|
public string NalLengthSize { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -356,6 +356,11 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
|
|
||||||
private void SaveSmartMatchString(string matchString, Series series, AutoOrganizeOptions options)
|
private void SaveSmartMatchString(string matchString, Series series, AutoOrganizeOptions options)
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrEmpty(matchString) || matchString.Length < 3)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
SmartMatchInfo info = options.SmartMatchInfos.FirstOrDefault(i => string.Equals(i.ItemName, series.Name, StringComparison.OrdinalIgnoreCase));
|
SmartMatchInfo info = options.SmartMatchInfos.FirstOrDefault(i => string.Equals(i.ItemName, series.Name, StringComparison.OrdinalIgnoreCase));
|
||||||
|
|
||||||
if (info == null)
|
if (info == null)
|
||||||
|
|
|
@ -95,7 +95,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
return _repo.Delete(resultId);
|
return _repo.Delete(resultId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private AutoOrganizeOptions GetAutoOrganizeptions()
|
private AutoOrganizeOptions GetAutoOrganizeOptions()
|
||||||
{
|
{
|
||||||
return _config.GetAutoOrganizeOptions();
|
return _config.GetAutoOrganizeOptions();
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
var organizer = new EpisodeFileOrganizer(this, _config, _fileSystem, _logger, _libraryManager,
|
var organizer = new EpisodeFileOrganizer(this, _config, _fileSystem, _logger, _libraryManager,
|
||||||
_libraryMonitor, _providerManager);
|
_libraryMonitor, _providerManager);
|
||||||
|
|
||||||
await organizer.OrganizeEpisodeFile(result.OriginalPath, GetAutoOrganizeptions(), true, CancellationToken.None)
|
await organizer.OrganizeEpisodeFile(result.OriginalPath, GetAutoOrganizeOptions(), true, CancellationToken.None)
|
||||||
.ConfigureAwait(false);
|
.ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
var organizer = new EpisodeFileOrganizer(this, _config, _fileSystem, _logger, _libraryManager,
|
var organizer = new EpisodeFileOrganizer(this, _config, _fileSystem, _logger, _libraryManager,
|
||||||
_libraryMonitor, _providerManager);
|
_libraryMonitor, _providerManager);
|
||||||
|
|
||||||
await organizer.OrganizeWithCorrection(request, GetAutoOrganizeptions(), CancellationToken.None).ConfigureAwait(false);
|
await organizer.OrganizeWithCorrection(request, GetAutoOrganizeOptions(), CancellationToken.None).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public QueryResult<SmartMatchInfo> GetSmartMatchInfos(FileOrganizationResultQuery query)
|
public QueryResult<SmartMatchInfo> GetSmartMatchInfos(FileOrganizationResultQuery query)
|
||||||
|
@ -136,7 +136,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
throw new ArgumentNullException("query");
|
throw new ArgumentNullException("query");
|
||||||
}
|
}
|
||||||
|
|
||||||
var options = GetAutoOrganizeptions();
|
var options = GetAutoOrganizeOptions();
|
||||||
|
|
||||||
var items = options.SmartMatchInfos.Skip(query.StartIndex ?? 0).Take(query.Limit ?? Int32.MaxValue).ToArray();
|
var items = options.SmartMatchInfos.Skip(query.StartIndex ?? 0).Take(query.Limit ?? Int32.MaxValue).ToArray();
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||||
throw new ArgumentNullException("matchString");
|
throw new ArgumentNullException("matchString");
|
||||||
}
|
}
|
||||||
|
|
||||||
var options = GetAutoOrganizeptions();
|
var options = GetAutoOrganizeOptions();
|
||||||
|
|
||||||
SmartMatchInfo info = options.SmartMatchInfos.FirstOrDefault(i => string.Equals(i.ItemName, itemName));
|
SmartMatchInfo info = options.SmartMatchInfos.FirstOrDefault(i => string.Equals(i.ItemName, itemName));
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
AddCommentColumn();
|
AddCommentColumn();
|
||||||
AddNalColumn();
|
AddNalColumn();
|
||||||
AddIsAvcColumn();
|
AddIsAvcColumn();
|
||||||
|
AddTitleColumn();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddIsAvcColumn()
|
private void AddIsAvcColumn()
|
||||||
|
@ -60,6 +61,37 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void AddTitleColumn()
|
||||||
|
{
|
||||||
|
using (var cmd = _connection.CreateCommand())
|
||||||
|
{
|
||||||
|
cmd.CommandText = "PRAGMA table_info(mediastreams)";
|
||||||
|
|
||||||
|
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult))
|
||||||
|
{
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
if (!reader.IsDBNull(1))
|
||||||
|
{
|
||||||
|
var name = reader.GetString(1);
|
||||||
|
|
||||||
|
if (string.Equals(name, "Title", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var builder = new StringBuilder();
|
||||||
|
|
||||||
|
builder.AppendLine("alter table mediastreams");
|
||||||
|
builder.AppendLine("add column Title TEXT");
|
||||||
|
|
||||||
|
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
||||||
|
}
|
||||||
|
|
||||||
private void AddNalColumn()
|
private void AddNalColumn()
|
||||||
{
|
{
|
||||||
using (var cmd = _connection.CreateCommand())
|
using (var cmd = _connection.CreateCommand())
|
||||||
|
|
|
@ -120,7 +120,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
_connection = await dbConnector.Connect(dbFile).ConfigureAwait(false);
|
_connection = await dbConnector.Connect(dbFile).ConfigureAwait(false);
|
||||||
|
|
||||||
var createMediaStreamsTableCommand
|
var createMediaStreamsTableCommand
|
||||||
= "create table if not exists mediastreams (ItemId GUID, StreamIndex INT, StreamType TEXT, Codec TEXT, Language TEXT, ChannelLayout TEXT, Profile TEXT, AspectRatio TEXT, Path TEXT, IsInterlaced BIT, BitRate INT NULL, Channels INT NULL, SampleRate INT NULL, IsDefault BIT, IsForced BIT, IsExternal BIT, Height INT NULL, Width INT NULL, AverageFrameRate FLOAT NULL, RealFrameRate FLOAT NULL, Level FLOAT NULL, PixelFormat TEXT, BitDepth INT NULL, IsAnamorphic BIT NULL, RefFrames INT NULL, CodecTag TEXT NULL, Comment TEXT NULL, NalLengthSize TEXT NULL, IsAvc BIT NULL, PRIMARY KEY (ItemId, StreamIndex))";
|
= "create table if not exists mediastreams (ItemId GUID, StreamIndex INT, StreamType TEXT, Codec TEXT, Language TEXT, ChannelLayout TEXT, Profile TEXT, AspectRatio TEXT, Path TEXT, IsInterlaced BIT, BitRate INT NULL, Channels INT NULL, SampleRate INT NULL, IsDefault BIT, IsForced BIT, IsExternal BIT, Height INT NULL, Width INT NULL, AverageFrameRate FLOAT NULL, RealFrameRate FLOAT NULL, Level FLOAT NULL, PixelFormat TEXT, BitDepth INT NULL, IsAnamorphic BIT NULL, RefFrames INT NULL, CodecTag TEXT NULL, Comment TEXT NULL, NalLengthSize TEXT NULL, IsAvc BIT NULL, Title TEXT NULL, PRIMARY KEY (ItemId, StreamIndex))";
|
||||||
|
|
||||||
string[] queries = {
|
string[] queries = {
|
||||||
|
|
||||||
|
@ -386,7 +386,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
"CodecTag",
|
"CodecTag",
|
||||||
"Comment",
|
"Comment",
|
||||||
"NalLengthSize",
|
"NalLengthSize",
|
||||||
"IsAvc"
|
"IsAvc",
|
||||||
|
"Title"
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -3403,6 +3404,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.Comment;
|
_saveStreamCommand.GetParameter(index++).Value = stream.Comment;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.NalLengthSize;
|
_saveStreamCommand.GetParameter(index++).Value = stream.NalLengthSize;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.IsAVC;
|
_saveStreamCommand.GetParameter(index++).Value = stream.IsAVC;
|
||||||
|
_saveStreamCommand.GetParameter(index++).Value = stream.Title;
|
||||||
|
|
||||||
_saveStreamCommand.Transaction = transaction;
|
_saveStreamCommand.Transaction = transaction;
|
||||||
_saveStreamCommand.ExecuteNonQuery();
|
_saveStreamCommand.ExecuteNonQuery();
|
||||||
|
@ -3571,6 +3573,11 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||||
item.IsAVC = reader.GetBoolean(28);
|
item.IsAVC = reader.GetBoolean(28);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!reader.IsDBNull(29))
|
||||||
|
{
|
||||||
|
item.Title = reader.GetString(29);
|
||||||
|
}
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user