2014-02-09 21:11:11 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-04-25 02:45:06 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2014-06-09 19:16:14 +00:00
|
|
|
|
using MediaBrowser.Controller.Chapters;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-02-09 21:11:11 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
|
|
|
|
using MediaBrowser.Controller.Localization;
|
2014-02-20 16:37:41 +00:00
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
using MediaBrowser.Controller.Subtitles;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-02-10 18:39:41 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using System;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
using System.Linq;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.MediaInfo
|
|
|
|
|
{
|
|
|
|
|
public class FFProbeProvider : ICustomMetadataProvider<Episode>,
|
2014-02-06 04:39:16 +00:00
|
|
|
|
ICustomMetadataProvider<MusicVideo>,
|
|
|
|
|
ICustomMetadataProvider<Movie>,
|
|
|
|
|
ICustomMetadataProvider<LiveTvVideoRecording>,
|
|
|
|
|
ICustomMetadataProvider<LiveTvAudioRecording>,
|
|
|
|
|
ICustomMetadataProvider<Trailer>,
|
|
|
|
|
ICustomMetadataProvider<Video>,
|
|
|
|
|
ICustomMetadataProvider<Audio>,
|
2014-09-11 01:57:11 +00:00
|
|
|
|
IHasItemChangeMonitor,
|
2014-02-19 05:21:03 +00:00
|
|
|
|
IHasOrder,
|
|
|
|
|
IForcedProvider
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IIsoManager _isoManager;
|
|
|
|
|
private readonly IMediaEncoder _mediaEncoder;
|
|
|
|
|
private readonly IItemRepository _itemRepo;
|
|
|
|
|
private readonly IBlurayExaminer _blurayExaminer;
|
|
|
|
|
private readonly ILocalizationManager _localization;
|
2014-02-09 21:11:11 +00:00
|
|
|
|
private readonly IApplicationPaths _appPaths;
|
|
|
|
|
private readonly IJsonSerializer _json;
|
2014-02-20 16:37:41 +00:00
|
|
|
|
private readonly IEncodingManager _encodingManager;
|
2014-04-25 02:45:06 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
private readonly ISubtitleManager _subtitleManager;
|
2014-06-09 19:16:14 +00:00
|
|
|
|
private readonly IChapterManager _chapterManager;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2014-02-04 20:19:29 +00:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "ffprobe"; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(Episode item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(MusicVideo item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(Movie item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(LiveTvVideoRecording item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(Trailer item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(Video item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return FetchVideoInfo(item, options, cancellationToken);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(Audio item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
return FetchAudioInfo(item, cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAsync(LiveTvAudioRecording item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
return FetchAudioInfo(item, cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public FFProbeProvider(ILogger logger, IIsoManager isoManager, IMediaEncoder mediaEncoder, IItemRepository itemRepo, IBlurayExaminer blurayExaminer, ILocalizationManager localization, IApplicationPaths appPaths, IJsonSerializer json, IEncodingManager encodingManager, IFileSystem fileSystem, IServerConfigurationManager config, ISubtitleManager subtitleManager, IChapterManager chapterManager)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_isoManager = isoManager;
|
|
|
|
|
_mediaEncoder = mediaEncoder;
|
|
|
|
|
_itemRepo = itemRepo;
|
|
|
|
|
_blurayExaminer = blurayExaminer;
|
|
|
|
|
_localization = localization;
|
2014-02-09 21:11:11 +00:00
|
|
|
|
_appPaths = appPaths;
|
|
|
|
|
_json = json;
|
2014-02-23 06:14:48 +00:00
|
|
|
|
_encodingManager = encodingManager;
|
2014-04-25 02:45:06 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
_config = config;
|
|
|
|
|
_subtitleManager = subtitleManager;
|
2014-06-09 19:16:14 +00:00
|
|
|
|
_chapterManager = chapterManager;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
private readonly Task<ItemUpdateType> _cachedTask = Task.FromResult(ItemUpdateType.None);
|
2014-06-09 19:16:14 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchVideoInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
where T : Video
|
|
|
|
|
{
|
|
|
|
|
if (item.LocationType != LocationType.FileSystem)
|
|
|
|
|
{
|
|
|
|
|
return _cachedTask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (item.VideoType == VideoType.Iso && !_isoManager.CanMount(item.Path))
|
|
|
|
|
{
|
|
|
|
|
return _cachedTask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (item.VideoType == VideoType.HdDvd)
|
|
|
|
|
{
|
|
|
|
|
return _cachedTask;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-03 05:11:03 +00:00
|
|
|
|
if (item.IsPlaceHolder)
|
|
|
|
|
{
|
|
|
|
|
return _cachedTask;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
var prober = new FFProbeVideoInfo(_logger, _isoManager, _mediaEncoder, _itemRepo, _blurayExaminer, _localization, _appPaths, _json, _encodingManager, _fileSystem, _config, _subtitleManager, _chapterManager);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return prober.ProbeVideo(item, options, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public Task<ItemUpdateType> FetchAudioInfo<T>(T item, CancellationToken cancellationToken)
|
|
|
|
|
where T : Audio
|
|
|
|
|
{
|
|
|
|
|
if (item.LocationType != LocationType.FileSystem)
|
|
|
|
|
{
|
|
|
|
|
return _cachedTask;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-09 21:11:11 +00:00
|
|
|
|
var prober = new FFProbeAudioInfo(_mediaEncoder, _itemRepo, _appPaths, _json);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
return prober.Probe(item, cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 01:57:11 +00:00
|
|
|
|
public bool HasChanged(IHasMetadata item, MetadataStatus status, IDirectoryService directoryService)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-09-11 01:57:11 +00:00
|
|
|
|
if (status.ItemDateModified.HasValue)
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
2014-09-11 01:57:11 +00:00
|
|
|
|
if (status.ItemDateModified.Value != item.DateModified)
|
2014-08-29 00:49:25 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 20:11:46 +00:00
|
|
|
|
if (item.SupportsLocalMetadata)
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
|
|
|
|
var video = item as Video;
|
|
|
|
|
|
2014-03-03 05:11:03 +00:00
|
|
|
|
if (video != null && !video.IsPlaceHolder)
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
2014-06-09 19:16:14 +00:00
|
|
|
|
return !video.SubtitleFiles
|
2014-07-26 17:30:15 +00:00
|
|
|
|
.SequenceEqual(SubtitleResolver.GetSubtitleFiles(video, directoryService, _fileSystem, false)
|
2014-06-09 19:16:14 +00:00
|
|
|
|
.Select(i => i.FullName)
|
|
|
|
|
.OrderBy(i => i), StringComparer.OrdinalIgnoreCase);
|
2014-02-10 18:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
2014-02-08 23:44:49 +00:00
|
|
|
|
|
|
|
|
|
public int Order
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Run last
|
|
|
|
|
return 100;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|