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

258 lines
9.4 KiB
C#
Raw Normal View History

2013-12-15 19:29:34 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
2013-12-18 06:44:46 +01:00
using MediaBrowser.Controller.Configuration;
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-06-18 21:16:27 +02:00
using MediaBrowser.Controller.Persistence;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
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;
2014-02-20 17:37:41 +01:00
namespace MediaBrowser.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
{
2013-12-18 06:44:46 +01:00
private readonly IServerConfigurationManager _config;
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;
2013-06-18 21:16:27 +02:00
private readonly IItemRepository _itemRepo;
2014-02-20 17:37:41 +01:00
private readonly IMediaEncoder _encoder;
2013-04-28 00:52:41 +02:00
2014-02-20 17:37:41 +01:00
public EncodingManager(IServerConfigurationManager config, IFileSystem fileSystem, ILogger logger, IItemRepository itemRepo, IMediaEncoder encoder)
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
_config = config;
_fileSystem = fileSystem;
2013-04-28 00:52:41 +02:00
_logger = logger;
2013-06-18 21:16:27 +02:00
_itemRepo = itemRepo;
2014-02-20 17:37:41 +01:00
_encoder = encoder;
2013-02-21 02:33:05 +01:00
}
2014-02-20 17:37:41 +01:00
private string SubtitleCachePath
2013-02-21 02:33:05 +01:00
{
get
{
2014-02-20 17:37:41 +01:00
return Path.Combine(_config.ApplicationPaths.CachePath, "subtitles");
2013-02-21 02:33:05 +01:00
}
}
2014-02-20 17:37:41 +01:00
public string GetSubtitleCachePath(string originalSubtitlePath, string outputSubtitleExtension)
{
var ticksParam = _fileSystem.GetLastWriteTimeUtc(originalSubtitlePath).Ticks;
var filename = (originalSubtitlePath + ticksParam).GetMD5() + outputSubtitleExtension;
var prefix = filename.Substring(0, 1);
return Path.Combine(SubtitleCachePath, prefix, filename);
}
public string GetSubtitleCachePath(string mediaPath, int subtitleStreamIndex, string outputSubtitleExtension)
{
var ticksParam = string.Empty;
var date = _fileSystem.GetLastWriteTimeUtc(mediaPath);
var filename = (mediaPath + "_" + subtitleStreamIndex.ToString(_usCulture) + "_" + date.Ticks.ToString(_usCulture) + ticksParam).GetMD5() + outputSubtitleExtension;
var prefix = filename.Substring(0, 1);
return Path.Combine(SubtitleCachePath, prefix, filename);
}
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 string GetChapterImagesPath(Guid itemId)
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
return Path.Combine(_config.ApplicationPaths.GetInternalMetadataPath(itemId), "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;
}
2013-12-18 06:44:46 +01:00
if (video is Movie)
{
2014-06-09 21:16:14 +02:00
if (!_config.Configuration.ChapterOptions.EnableMovieChapterImageExtraction)
2013-12-18 06:44:46 +01:00
{
return false;
}
}
else if (video is Episode)
{
2014-06-09 21:16:14 +02:00
if (!_config.Configuration.ChapterOptions.EnableEpisodeChapterImageExtraction)
2013-12-18 06:44:46 +01:00
{
return false;
}
}
2014-02-20 17:37:41 +01:00
else
2013-12-18 06:44:46 +01:00
{
2014-06-09 21:16:14 +02:00
if (!_config.Configuration.ChapterOptions.EnableOtherVideoChapterImageExtraction)
2013-12-18 06:44:46 +01:00
{
return false;
}
}
// 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
2014-02-20 17:37:41 +01:00
public async Task<bool> RefreshChapterImages(ChapterImageRefreshOptions options, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
var extractImages = options.ExtractImages;
var video = options.Video;
var chapters = options.Chapters;
var saveChapters = options.SaveChapters;
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);
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.Info("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)
{
2014-04-22 19:25:54 +02:00
if (video.VideoType == VideoType.HdDvd || video.VideoType == VideoType.Iso ||
video.VideoType == VideoType.BluRay)
2013-02-21 02:33:05 +01:00
{
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;
2013-02-21 02:33:05 +01:00
2013-12-19 22:51:32 +01:00
var inputPath = MediaEncoderHelpers.GetInputArgument(video.Path, false, video.VideoType, video.IsoType, null, video.PlayableStreamFileNames, out type);
try
2013-02-21 02:33:05 +01:00
{
2014-02-20 17:37:41 +01:00
Directory.CreateDirectory(Path.GetDirectoryName(path));
2013-12-06 04:39:44 +01:00
2014-03-27 20:30:21 +01:00
using (var stream = await _encoder.ExtractVideoImage(inputPath, type, video.Video3DFormat, time, cancellationToken).ConfigureAwait(false))
{
using (var fileStream = _fileSystem.GetFileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, true))
{
await stream.CopyToAsync(fileStream).ConfigureAwait(false);
}
}
2013-02-21 02:33:05 +01:00
chapter.ImagePath = path;
changesMade = true;
}
catch
{
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;
changesMade = true;
}
}
2013-06-18 21:16:27 +02:00
if (saveChapters && changesMade)
2013-02-21 02:33:05 +01:00
{
2013-06-18 21:16:27 +02:00
await _itemRepo.SaveChapters(video.Id, chapters, cancellationToken).ConfigureAwait(false);
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";
return Path.Combine(GetChapterImagesPath(video.Id), filename);
}
private List<string> GetSavedChapterImages(Video video)
{
var path = GetChapterImagesPath(video.Id);
try
{
return Directory.EnumerateFiles(path)
.ToList();
}
catch (DirectoryNotFoundException)
{
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)
{
_logger.Debug("Deleting dead chapter image {0}", image);
try
{
File.Delete(image);
}
catch (IOException ex)
{
_logger.ErrorException("Error deleting {0}.", ex, image);
}
}
}
2013-02-21 02:33:05 +01:00
}
}