using MediaBrowser.Common.Extensions; using MediaBrowser.Common.MediaInfo; using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.MediaInfo; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using MediaBrowser.Model.IO; using MediaBrowser.Model.Logging; using System; using System.Collections.Concurrent; using System.IO; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Providers.MediaInfo { class VideoImageProvider : BaseMetadataProvider { /// /// The _locks /// private readonly ConcurrentDictionary _locks = new ConcurrentDictionary(); /// /// The _media encoder /// private readonly IMediaEncoder _mediaEncoder; private readonly IIsoManager _isoManager; public VideoImageProvider(ILogManager logManager, IServerConfigurationManager configurationManager, IMediaEncoder mediaEncoder, IIsoManager isoManager) : base(logManager, configurationManager) { _mediaEncoder = mediaEncoder; _isoManager = isoManager; } /// /// Gets a value indicating whether [refresh on version change]. /// /// true if [refresh on version change]; otherwise, false. protected override bool RefreshOnVersionChange { get { return true; } } /// /// Gets the provider version. /// /// The provider version. protected override string ProviderVersion { get { return "1"; } } /// /// Supportses the specified item. /// /// The item. /// true if XXXX, false otherwise public override bool Supports(BaseItem item) { return item.LocationType == LocationType.FileSystem && item is Video; } /// /// Needses the refresh internal. /// /// The item. /// The provider info. /// true if XXXX, false otherwise protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo) { var video = (Video)item; if (!QualifiesForExtraction(video)) { return false; } return base.NeedsRefreshInternal(item, providerInfo); } /// /// Qualifieses for extraction. /// /// The item. /// true if XXXX, false otherwise private bool QualifiesForExtraction(Video item) { if (!ConfigurationManager.Configuration.EnableVideoImageExtraction) { return false; } if (!string.IsNullOrEmpty(item.PrimaryImagePath)) { return false; } // No support for this if (item.VideoType == VideoType.HdDvd) { return false; } // Can't extract from iso's if we weren't unable to determine iso type if (item.VideoType == VideoType.Iso && !item.IsoType.HasValue) { return false; } // Can't extract if we didn't find a video stream in the file if (!item.DefaultVideoStreamIndex.HasValue) { return false; } return true; } /// /// Override this to return the date that should be compared to the last refresh date /// to determine if this provider should be re-fetched. /// /// The item. /// DateTime. protected override DateTime CompareDate(BaseItem item) { return item.DateModified; } /// /// Gets the priority. /// /// The priority. public override MetadataProviderPriority Priority { get { return MetadataProviderPriority.Last; } } public override ItemUpdateType ItemUpdateType { get { return ItemUpdateType.ImageUpdate; } } /// /// Fetches metadata and returns true or false indicating if any work that requires persistence was done /// /// The item. /// if set to true [force]. /// The cancellation token. /// Task{System.Boolean}. public override async Task FetchAsync(BaseItem item, bool force, BaseProviderInfo providerInfo, CancellationToken cancellationToken) { item.ValidateImages(); var video = (Video)item; // Double check this here in case force was used if (QualifiesForExtraction(video)) { try { await ExtractImage(video, cancellationToken).ConfigureAwait(false); } catch (Exception ex) { // Swallow this so that we don't keep on trying over and over again Logger.ErrorException("Error extracting image for {0}", ex, item.Name); } } SetLastRefreshed(item, DateTime.UtcNow, providerInfo); return true; } /// /// Extracts the image. /// /// The item. /// The cancellation token. /// Task. private async Task ExtractImage(Video item, CancellationToken cancellationToken) { cancellationToken.ThrowIfCancellationRequested(); var path = GetVideoImagePath(item); if (!File.Exists(path)) { var semaphore = GetLock(path); // Acquire a lock await semaphore.WaitAsync(cancellationToken).ConfigureAwait(false); // Check again if (!File.Exists(path)) { try { var parentPath = Path.GetDirectoryName(path); Directory.CreateDirectory(parentPath); await ExtractImageInternal(item, path, cancellationToken).ConfigureAwait(false); } finally { semaphore.Release(); } } else { semaphore.Release(); } } // Image is already in the cache item.PrimaryImagePath = path; } /// /// Extracts the image. /// /// The video. /// The path. /// The cancellation token. /// Task. private async Task ExtractImageInternal(Video video, string path, CancellationToken cancellationToken) { var isoMount = await MountIsoIfNeeded(video, cancellationToken).ConfigureAwait(false); try { // If we know the duration, grab it from 10% into the video. Otherwise just 10 seconds in. // Always use 10 seconds for dvd because our duration could be out of whack var imageOffset = video.VideoType != VideoType.Dvd && video.RunTimeTicks.HasValue && video.RunTimeTicks.Value > 0 ? TimeSpan.FromTicks(Convert.ToInt64(video.RunTimeTicks.Value * .1)) : TimeSpan.FromSeconds(10); InputType type; var inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type); await _mediaEncoder.ExtractImage(inputPath, type, video.Video3DFormat, imageOffset, path, cancellationToken).ConfigureAwait(false); video.PrimaryImagePath = path; } finally { if (isoMount != null) { isoMount.Dispose(); } } } /// /// The null mount task result /// protected readonly Task NullMountTaskResult = Task.FromResult(null); /// /// Mounts the iso if needed. /// /// The item. /// The cancellation token. /// Task{IIsoMount}. protected Task MountIsoIfNeeded(Video item, CancellationToken cancellationToken) { if (item.VideoType == VideoType.Iso) { return _isoManager.Mount(item.Path, cancellationToken); } return NullMountTaskResult; } /// /// Gets the lock. /// /// The filename. /// SemaphoreSlim. private SemaphoreSlim GetLock(string filename) { return _locks.GetOrAdd(filename, key => new SemaphoreSlim(1, 1)); } /// /// Gets the video images data path. /// /// The video images data path. public string VideoImagesPath { get { return Path.Combine(ConfigurationManager.ApplicationPaths.DataPath, "extracted-video-images"); } } /// /// Gets the audio image path. /// /// The item. /// System.String. private string GetVideoImagePath(Video item) { var filename = item.Path + "_" + item.DateModified.Ticks + "_primary"; filename = filename.GetMD5() + ".jpg"; var prefix = filename.Substring(0, 1); return Path.Combine(VideoImagesPath, prefix, filename); } } }