|
@@ -1,7 +1,5 @@
|
|
#nullable disable
|
|
#nullable disable
|
|
|
|
|
|
-#pragma warning disable CS1591
|
|
|
|
-
|
|
|
|
using System;
|
|
using System;
|
|
using System.IO;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Linq;
|
|
@@ -27,7 +25,10 @@ using Microsoft.Extensions.Logging;
|
|
|
|
|
|
namespace MediaBrowser.Providers.MediaInfo
|
|
namespace MediaBrowser.Providers.MediaInfo
|
|
{
|
|
{
|
|
- public class FFProbeProvider : ICustomMetadataProvider<Episode>,
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// The probe provider.
|
|
|
|
+ /// </summary>
|
|
|
|
+ public class ProbeProvider : ICustomMetadataProvider<Episode>,
|
|
ICustomMetadataProvider<MusicVideo>,
|
|
ICustomMetadataProvider<MusicVideo>,
|
|
ICustomMetadataProvider<Movie>,
|
|
ICustomMetadataProvider<Movie>,
|
|
ICustomMetadataProvider<Trailer>,
|
|
ICustomMetadataProvider<Trailer>,
|
|
@@ -39,14 +40,30 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
IPreRefreshProvider,
|
|
IPreRefreshProvider,
|
|
IHasItemChangeMonitor
|
|
IHasItemChangeMonitor
|
|
{
|
|
{
|
|
- private readonly ILogger<FFProbeProvider> _logger;
|
|
|
|
|
|
+ private readonly ILogger<ProbeProvider> _logger;
|
|
private readonly AudioResolver _audioResolver;
|
|
private readonly AudioResolver _audioResolver;
|
|
private readonly SubtitleResolver _subtitleResolver;
|
|
private readonly SubtitleResolver _subtitleResolver;
|
|
private readonly FFProbeVideoInfo _videoProber;
|
|
private readonly FFProbeVideoInfo _videoProber;
|
|
- private readonly FFProbeAudioInfo _audioProber;
|
|
|
|
|
|
+ private readonly AudioFileProber _audioProber;
|
|
private readonly Task<ItemUpdateType> _cachedTask = Task.FromResult(ItemUpdateType.None);
|
|
private readonly Task<ItemUpdateType> _cachedTask = Task.FromResult(ItemUpdateType.None);
|
|
|
|
|
|
- public FFProbeProvider(
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Initializes a new instance of the <see cref="ProbeProvider"/> class.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="mediaSourceManager">Instance of the <see cref="IMediaSourceManager"/> interface.</param>
|
|
|
|
+ /// <param name="mediaEncoder">Instance of the <see cref="IMediaEncoder"/> interface.</param>
|
|
|
|
+ /// <param name="itemRepo">Instance of the <see cref="IItemRepository"/> interface.</param>
|
|
|
|
+ /// <param name="blurayExaminer">Instance of the <see cref="IBlurayExaminer"/> interface.</param>
|
|
|
|
+ /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param>
|
|
|
|
+ /// <param name="encodingManager">Instance of the <see cref="IEncodingManager"/> interface.</param>
|
|
|
|
+ /// <param name="config">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
|
|
|
|
+ /// <param name="subtitleManager">Instance of the <see cref="ISubtitleManager"/> interface.</param>
|
|
|
|
+ /// <param name="chapterManager">Instance of the <see cref="IChapterManager"/> interface.</param>
|
|
|
|
+ /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
|
|
|
|
+ /// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/>.</param>
|
|
|
|
+ /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
|
|
|
|
+ /// <param name="namingOptions">The <see cref="NamingOptions"/>.</param>
|
|
|
|
+ public ProbeProvider(
|
|
IMediaSourceManager mediaSourceManager,
|
|
IMediaSourceManager mediaSourceManager,
|
|
IMediaEncoder mediaEncoder,
|
|
IMediaEncoder mediaEncoder,
|
|
IItemRepository itemRepo,
|
|
IItemRepository itemRepo,
|
|
@@ -61,7 +78,8 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
ILoggerFactory loggerFactory,
|
|
ILoggerFactory loggerFactory,
|
|
NamingOptions namingOptions)
|
|
NamingOptions namingOptions)
|
|
{
|
|
{
|
|
- _logger = loggerFactory.CreateLogger<FFProbeProvider>();
|
|
|
|
|
|
+ _logger = loggerFactory.CreateLogger<ProbeProvider>();
|
|
|
|
+ _audioProber = new AudioFileProber(mediaSourceManager, mediaEncoder, itemRepo, libraryManager);
|
|
_audioResolver = new AudioResolver(loggerFactory.CreateLogger<AudioResolver>(), localization, mediaEncoder, fileSystem, namingOptions);
|
|
_audioResolver = new AudioResolver(loggerFactory.CreateLogger<AudioResolver>(), localization, mediaEncoder, fileSystem, namingOptions);
|
|
_subtitleResolver = new SubtitleResolver(loggerFactory.CreateLogger<SubtitleResolver>(), localization, mediaEncoder, fileSystem, namingOptions);
|
|
_subtitleResolver = new SubtitleResolver(loggerFactory.CreateLogger<SubtitleResolver>(), localization, mediaEncoder, fileSystem, namingOptions);
|
|
_videoProber = new FFProbeVideoInfo(
|
|
_videoProber = new FFProbeVideoInfo(
|
|
@@ -78,14 +96,15 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
libraryManager,
|
|
libraryManager,
|
|
_audioResolver,
|
|
_audioResolver,
|
|
_subtitleResolver);
|
|
_subtitleResolver);
|
|
- _audioProber = new FFProbeAudioInfo(mediaSourceManager, mediaEncoder, itemRepo, libraryManager);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- public string Name => "ffprobe";
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
|
|
+ public string Name => "Probe Provider";
|
|
|
|
|
|
- // Run last
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public int Order => 100;
|
|
public int Order => 100;
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public bool HasChanged(BaseItem item, IDirectoryService directoryService)
|
|
public bool HasChanged(BaseItem item, IDirectoryService directoryService)
|
|
{
|
|
{
|
|
var video = item as Video;
|
|
var video = item as Video;
|
|
@@ -127,41 +146,56 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(Episode item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(Episode item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(MusicVideo item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(MusicVideo item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(Movie item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(Movie item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(Trailer item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(Trailer item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(Video item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(Video item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(Audio item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(Audio item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchAudioInfo(item, options, cancellationToken);
|
|
return FetchAudioInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <inheritdoc />
|
|
public Task<ItemUpdateType> FetchAsync(AudioBook item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAsync(AudioBook item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
{
|
|
{
|
|
return FetchAudioInfo(item, options, cancellationToken);
|
|
return FetchAudioInfo(item, options, cancellationToken);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Fetches video information for an item.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="item">The item.</param>
|
|
|
|
+ /// <param name="options">The <see cref="MetadataRefreshOptions"/>.</param>
|
|
|
|
+ /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
|
|
|
|
+ /// <typeparam name="T">The type of item to resolve.</typeparam>
|
|
|
|
+ /// <returns>A <see cref="Task"/> fetching the <see cref="ItemUpdateType"/> for an item.</returns>
|
|
public Task<ItemUpdateType> FetchVideoInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchVideoInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
where T : Video
|
|
where T : Video
|
|
{
|
|
{
|
|
@@ -208,6 +242,14 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i) && !i.StartsWith('#'));
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i) && !i.StartsWith('#'));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Fetches audio information for an item.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <param name="item">The item.</param>
|
|
|
|
+ /// <param name="options">The <see cref="MetadataRefreshOptions"/>.</param>
|
|
|
|
+ /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
|
|
|
|
+ /// <typeparam name="T">The type of item to resolve.</typeparam>
|
|
|
|
+ /// <returns>A <see cref="Task"/> fetching the <see cref="ItemUpdateType"/> for an item.</returns>
|
|
public Task<ItemUpdateType> FetchAudioInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
public Task<ItemUpdateType> FetchAudioInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
where T : Audio
|
|
where T : Audio
|
|
{
|
|
{
|