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