123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- using MediaBrowser.Common.IO;
- using MediaBrowser.Common.MediaInfo;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.Providers.MediaInfo;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Logging;
- using MoreLinq;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Controller.MediaInfo
- {
- /// <summary>
- /// Class FFMpegManager
- /// </summary>
- public class FFMpegManager
- {
- /// <summary>
- /// Gets or sets the video image cache.
- /// </summary>
- /// <value>The video image cache.</value>
- internal FileSystemRepository VideoImageCache { get; set; }
- /// <summary>
- /// Gets or sets the subtitle cache.
- /// </summary>
- /// <value>The subtitle cache.</value>
- internal FileSystemRepository SubtitleCache { get; set; }
- private readonly ILibraryManager _libraryManager;
- private readonly IServerApplicationPaths _appPaths;
- private readonly IMediaEncoder _encoder;
- private readonly ILogger _logger;
- /// <summary>
- /// Holds the list of new items to generate chapter image for when the NewItemTimer expires
- /// </summary>
- private readonly List<Video> _newlyAddedItems = new List<Video>();
- /// <summary>
- /// The amount of time to wait before generating chapter images
- /// </summary>
- private const int NewItemDelay = 300000;
- /// <summary>
- /// The current new item timer
- /// </summary>
- /// <value>The new item timer.</value>
- private Timer NewItemTimer { get; set; }
- /// <summary>
- /// Initializes a new instance of the <see cref="FFMpegManager" /> class.
- /// </summary>
- /// <param name="appPaths">The app paths.</param>
- /// <param name="encoder">The encoder.</param>
- /// <param name="libraryManager">The library manager.</param>
- /// <param name="logger">The logger.</param>
- /// <exception cref="System.ArgumentNullException">zipClient</exception>
- public FFMpegManager(IServerApplicationPaths appPaths, IMediaEncoder encoder, ILibraryManager libraryManager, ILogger logger)
- {
- _appPaths = appPaths;
- _encoder = encoder;
- _libraryManager = libraryManager;
- _logger = logger;
- VideoImageCache = new FileSystemRepository(VideoImagesDataPath);
- SubtitleCache = new FileSystemRepository(SubtitleCachePath);
- libraryManager.ItemAdded += libraryManager_ItemAdded;
- libraryManager.ItemUpdated += libraryManager_ItemAdded;
- }
- /// <summary>
- /// Handles the ItemAdded event of the libraryManager control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="ItemChangeEventArgs"/> instance containing the event data.</param>
- void libraryManager_ItemAdded(object sender, ItemChangeEventArgs e)
- {
- var video = e.Item as Video;
- if (video == null)
- {
- return;
- }
- lock (_newlyAddedItems)
- {
- _newlyAddedItems.Add(video);
- if (NewItemTimer == null)
- {
- NewItemTimer = new Timer(NewItemTimerCallback, null, NewItemDelay, Timeout.Infinite);
- }
- else
- {
- NewItemTimer.Change(NewItemDelay, Timeout.Infinite);
- }
- }
- }
- /// <summary>
- /// The _video images data path
- /// </summary>
- private string _videoImagesDataPath;
- /// <summary>
- /// Gets the video images data path.
- /// </summary>
- /// <value>The video images data path.</value>
- public string VideoImagesDataPath
- {
- get
- {
- if (_videoImagesDataPath == null)
- {
- _videoImagesDataPath = Path.Combine(_appPaths.DataPath, "extracted-video-images");
- if (!Directory.Exists(_videoImagesDataPath))
- {
- Directory.CreateDirectory(_videoImagesDataPath);
- }
- }
- return _videoImagesDataPath;
- }
- }
- /// <summary>
- /// The _audio images data path
- /// </summary>
- private string _audioImagesDataPath;
- /// <summary>
- /// Gets the audio images data path.
- /// </summary>
- /// <value>The audio images data path.</value>
- public string AudioImagesDataPath
- {
- get
- {
- if (_audioImagesDataPath == null)
- {
- _audioImagesDataPath = Path.Combine(_appPaths.DataPath, "extracted-audio-images");
- if (!Directory.Exists(_audioImagesDataPath))
- {
- Directory.CreateDirectory(_audioImagesDataPath);
- }
- }
- return _audioImagesDataPath;
- }
- }
- /// <summary>
- /// The _subtitle cache path
- /// </summary>
- private string _subtitleCachePath;
- /// <summary>
- /// Gets the subtitle cache path.
- /// </summary>
- /// <value>The subtitle cache path.</value>
- public string SubtitleCachePath
- {
- get
- {
- if (_subtitleCachePath == null)
- {
- _subtitleCachePath = Path.Combine(_appPaths.CachePath, "subtitles");
- if (!Directory.Exists(_subtitleCachePath))
- {
- Directory.CreateDirectory(_subtitleCachePath);
- }
- }
- return _subtitleCachePath;
- }
- }
- /// <summary>
- /// Called when the new item timer expires
- /// </summary>
- /// <param name="state">The state.</param>
- private async void NewItemTimerCallback(object state)
- {
- List<Video> newItems;
- // Lock the list and release all resources
- lock (_newlyAddedItems)
- {
- newItems = _newlyAddedItems.DistinctBy(i => i.Id).ToList();
- _newlyAddedItems.Clear();
- NewItemTimer.Dispose();
- NewItemTimer = null;
- }
- // Limit the number of videos we generate images for
- // The idea is to catch new items that are added here and there
- // Mass image generation can be left to the scheduled task
- foreach (var video in newItems.Where(c => c.Chapters != null).Take(5))
- {
- try
- {
- await PopulateChapterImages(video, CancellationToken.None, true, true).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error creating chapter images for {0}", ex, video.Name);
- }
- }
- }
-
- /// <summary>
- /// The first chapter ticks
- /// </summary>
- private static readonly long FirstChapterTicks = TimeSpan.FromSeconds(15).Ticks;
- /// <summary>
- /// Extracts the chapter images.
- /// </summary>
- /// <param name="video">The video.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="extractImages">if set to <c>true</c> [extract images].</param>
- /// <param name="saveItem">if set to <c>true</c> [save item].</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- public async Task PopulateChapterImages(Video video, CancellationToken cancellationToken, bool extractImages, bool saveItem)
- {
- if (video.Chapters == null)
- {
- throw new ArgumentNullException();
- }
- // Can't extract images if there are no video streams
- if (video.MediaStreams == null || video.MediaStreams.All(m => m.Type != MediaStreamType.Video))
- {
- return;
- }
- var changesMade = false;
- foreach (var chapter in video.Chapters)
- {
- var filename = video.Id + "_" + video.DateModified.Ticks + "_" + chapter.StartPositionTicks;
- var path = VideoImageCache.GetResourcePath(filename, ".jpg");
- if (!VideoImageCache.ContainsFilePath(path))
- {
- if (extractImages)
- {
- if (video.VideoType == VideoType.HdDvd || video.VideoType == VideoType.Iso)
- {
- continue;
- }
- if (video.VideoType == VideoType.BluRay)
- {
- // Can only extract reliably on single file blurays
- if (video.PlayableStreamFileNames == null || video.PlayableStreamFileNames.Count != 1)
- {
- continue;
- }
- }
- // Add some time for the first chapter to make sure we don't end up with a black image
- var time = chapter.StartPositionTicks == 0 ? TimeSpan.FromTicks(Math.Min(FirstChapterTicks, video.RunTimeTicks ?? 0)) : TimeSpan.FromTicks(chapter.StartPositionTicks);
- InputType type;
- var inputPath = MediaEncoderHelpers.GetInputArgument(video, null, out type);
- try
- {
- await _encoder.ExtractImage(inputPath, type, time, path, cancellationToken).ConfigureAwait(false);
- chapter.ImagePath = path;
- changesMade = true;
- }
- catch
- {
- break;
- }
- }
- }
- else if (!string.Equals(path, chapter.ImagePath, StringComparison.OrdinalIgnoreCase))
- {
- chapter.ImagePath = path;
- changesMade = true;
- }
- }
- if (saveItem && changesMade)
- {
- await _libraryManager.UpdateItem(video, CancellationToken.None).ConfigureAwait(false);
- }
- }
- /// <summary>
- /// Gets the subtitle cache path.
- /// </summary>
- /// <param name="input">The input.</param>
- /// <param name="subtitleStreamIndex">Index of the subtitle stream.</param>
- /// <param name="offset">The offset.</param>
- /// <param name="outputExtension">The output extension.</param>
- /// <returns>System.String.</returns>
- public string GetSubtitleCachePath(Video input, int subtitleStreamIndex, TimeSpan? offset, string outputExtension)
- {
- var ticksParam = offset.HasValue ? "_" + offset.Value.Ticks : "";
- return SubtitleCache.GetResourcePath(input.Id + "_" + subtitleStreamIndex + "_" + input.DateModified.Ticks + ticksParam, outputExtension);
- }
- }
- }
|