jellyfin/Emby.Server.Implementations/MediaEncoder/EncodingManager.cs

243 lines
8.6 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Chapters;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
2013-12-18 06:44:46 +01:00
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
2014-06-29 19:35:05 +02:00
using MediaBrowser.Model.MediaInfo;
2013-02-21 02:33:05 +01:00
using System;
2013-09-04 19:02:19 +02:00
using System.Collections.Generic;
2013-12-15 19:29:34 +01:00
using System.Globalization;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2017-05-26 08:48:54 +02:00
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.MediaEncoder
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
public class EncodingManager : IEncodingManager
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
private readonly IFileSystem _fileSystem;
2013-04-28 00:52:41 +02:00
private readonly ILogger _logger;
2014-02-20 17:37:41 +01:00
private readonly IMediaEncoder _encoder;
2014-06-10 19:36:06 +02:00
private readonly IChapterManager _chapterManager;
private readonly ILibraryManager _libraryManager;
2013-04-28 00:52:41 +02:00
2017-08-05 21:02:33 +02:00
public EncodingManager(IFileSystem fileSystem,
ILogger logger,
IMediaEncoder encoder,
2016-08-30 08:06:24 +02:00
IChapterManager chapterManager, ILibraryManager libraryManager)
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
_fileSystem = fileSystem;
2013-04-28 00:52:41 +02:00
_logger = logger;
2014-02-20 17:37:41 +01:00
_encoder = encoder;
2014-06-10 19:36:06 +02:00
_chapterManager = chapterManager;
2016-08-30 08:06:24 +02:00
_libraryManager = libraryManager;
2014-02-20 17:37:41 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
2014-02-20 17:37:41 +01:00
/// Gets the chapter images data path.
2013-02-21 02:33:05 +01:00
/// </summary>
2014-02-20 17:37:41 +01:00
/// <value>The chapter images data path.</value>
private static string GetChapterImagesPath(BaseItem item)
2013-02-21 02:33:05 +01:00
{
2014-09-28 17:27:26 +02:00
return Path.Combine(item.GetInternalMetadataPath(), "chapters");
2013-02-21 02:33:05 +01:00
}
2013-12-06 04:39:44 +01:00
2013-12-18 06:44:46 +01:00
/// <summary>
/// Determines whether [is eligible for chapter image extraction] [the specified video].
/// </summary>
/// <param name="video">The video.</param>
/// <returns><c>true</c> if [is eligible for chapter image extraction] [the specified video]; otherwise, <c>false</c>.</returns>
private bool IsEligibleForChapterImageExtraction(Video video)
{
if (video.IsPlaceHolder)
{
return false;
}
var libraryOptions = _libraryManager.GetLibraryOptions(video);
if (libraryOptions != null)
2013-12-18 06:44:46 +01:00
{
if (!libraryOptions.EnableChapterImageExtraction)
2013-12-18 06:44:46 +01:00
{
return false;
}
}
else
2013-12-18 06:44:46 +01:00
{
return false;
2013-12-18 06:44:46 +01:00
}
if (video.VideoType == VideoType.Iso)
{
return false;
}
if (video.VideoType == VideoType.BluRay || video.VideoType == VideoType.Dvd)
{
return false;
}
if (video.IsShortcut)
{
return false;
}
2017-08-26 21:50:02 +02:00
if (!video.IsCompleteMedia)
{
return false;
}
2013-12-18 06:44:46 +01:00
// Can't extract images if there are no video streams
return video.DefaultVideoStreamIndex.HasValue;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// The first chapter ticks
/// </summary>
private static readonly long FirstChapterTicks = TimeSpan.FromSeconds(15).Ticks;
2013-02-21 02:33:05 +01:00
public async Task<bool> RefreshChapterImages(Video video, IDirectoryService directoryService, List<ChapterInfo> chapters, bool extractImages, bool saveChapters, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
2013-12-18 06:44:46 +01:00
if (!IsEligibleForChapterImageExtraction(video))
{
2014-01-31 05:50:09 +01:00
extractImages = false;
}
var success = true;
2013-02-21 02:33:05 +01:00
var changesMade = false;
var runtimeTicks = video.RunTimeTicks ?? 0;
var currentImages = GetSavedChapterImages(video, directoryService);
2013-06-18 21:16:27 +02:00
foreach (var chapter in chapters)
2013-02-21 02:33:05 +01:00
{
if (chapter.StartPositionTicks >= runtimeTicks)
{
_logger.LogInformation("Stopping chapter extraction for {0} because a chapter was found with a position greater than the runtime.", video.Name);
break;
}
var path = GetChapterImagePath(video, chapter.StartPositionTicks);
2013-02-21 02:33:05 +01:00
if (!currentImages.Contains(path, StringComparer.OrdinalIgnoreCase))
2013-02-21 02:33:05 +01:00
{
if (extractImages)
{
2018-09-12 19:26:21 +02:00
cancellationToken.ThrowIfCancellationRequested();
2016-09-05 22:07:36 +02:00
try
{
// 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);
2013-02-21 02:33:05 +01:00
2016-09-05 22:07:36 +02:00
var protocol = MediaProtocol.File;
2013-02-21 02:33:05 +01:00
2018-09-12 19:26:21 +02:00
var inputPath = MediaEncoderHelpers.GetInputArgument(_fileSystem, video.Path, protocol, null, Array.Empty<string>());
2017-05-04 20:14:45 +02:00
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(path));
2013-12-06 04:39:44 +01:00
2016-09-30 20:43:59 +02:00
var container = video.Container;
var tempFile = await _encoder.ExtractVideoImage(inputPath, container, protocol, video.GetDefaultVideoStream(), video.Video3DFormat, time, cancellationToken).ConfigureAwait(false);
_fileSystem.CopyFile(tempFile, path, true);
try
{
_fileSystem.DeleteFile(tempFile);
}
catch
{
2017-08-05 21:02:33 +02:00
}
2013-02-21 02:33:05 +01:00
chapter.ImagePath = path;
2016-07-06 19:44:44 +02:00
chapter.ImageDateModified = _fileSystem.GetLastWriteTimeUtc(path);
2013-02-21 02:33:05 +01:00
changesMade = true;
}
2015-04-11 19:59:55 +02:00
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error extracting chapter images for {0}", string.Join(",", video.Path));
success = false;
break;
}
2013-02-21 02:33:05 +01:00
}
2014-01-31 05:50:09 +01:00
else if (!string.IsNullOrEmpty(chapter.ImagePath))
{
chapter.ImagePath = null;
changesMade = true;
}
2013-02-21 02:33:05 +01:00
}
else if (!string.Equals(path, chapter.ImagePath, StringComparison.OrdinalIgnoreCase))
{
chapter.ImagePath = path;
2016-07-06 19:44:44 +02:00
chapter.ImageDateModified = _fileSystem.GetLastWriteTimeUtc(path);
2013-02-21 02:33:05 +01:00
changesMade = true;
}
}
2013-06-18 21:16:27 +02:00
if (saveChapters && changesMade)
2013-02-21 02:33:05 +01:00
{
_chapterManager.SaveChapters(video.Id.ToString(), chapters);
2013-02-21 02:33:05 +01:00
}
DeleteDeadImages(currentImages, chapters);
return success;
2013-02-21 02:33:05 +01:00
}
2014-02-20 17:37:41 +01:00
private string GetChapterImagePath(Video video, long chapterPositionTicks)
{
var filename = video.DateModified.Ticks.ToString(_usCulture) + "_" + chapterPositionTicks.ToString(_usCulture) + ".jpg";
2014-09-28 17:27:26 +02:00
return Path.Combine(GetChapterImagesPath(video), filename);
2014-02-20 17:37:41 +01:00
}
private static List<string> GetSavedChapterImages(Video video, IDirectoryService directoryService)
2014-02-20 17:37:41 +01:00
{
2014-09-28 17:27:26 +02:00
var path = GetChapterImagesPath(video);
2014-02-20 17:37:41 +01:00
try
{
return directoryService.GetFilePaths(path)
2014-02-20 17:37:41 +01:00
.ToList();
}
catch (IOException)
2014-02-20 17:37:41 +01:00
{
return new List<string>();
}
}
private void DeleteDeadImages(IEnumerable<string> images, IEnumerable<ChapterInfo> chapters)
{
var deadImages = images
2013-12-15 18:01:56 +01:00
.Except(chapters.Select(i => i.ImagePath).Where(i => !string.IsNullOrEmpty(i)), StringComparer.OrdinalIgnoreCase)
.Where(i => BaseItem.SupportedImageExtensions.Contains(Path.GetExtension(i), StringComparer.OrdinalIgnoreCase))
.ToList();
foreach (var image in deadImages)
{
2018-12-20 13:11:26 +01:00
_logger.LogDebug("Deleting dead chapter image {path}", image);
try
{
_fileSystem.DeleteFile(image);
}
catch (IOException ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error deleting {path}.", image);
}
}
}
2013-02-21 02:33:05 +01:00
}
}