| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Extensions; |
| | 13 | | using MediaBrowser.Controller.Chapters; |
| | 14 | | using MediaBrowser.Controller.Entities; |
| | 15 | | using MediaBrowser.Controller.Library; |
| | 16 | | using MediaBrowser.Controller.MediaEncoding; |
| | 17 | | using MediaBrowser.Controller.Providers; |
| | 18 | | using MediaBrowser.Model.Configuration; |
| | 19 | | using MediaBrowser.Model.Dto; |
| | 20 | | using MediaBrowser.Model.Entities; |
| | 21 | | using MediaBrowser.Model.IO; |
| | 22 | | using Microsoft.Extensions.Logging; |
| | 23 | |
|
| | 24 | | namespace Emby.Server.Implementations.MediaEncoder |
| | 25 | | { |
| | 26 | | public class EncodingManager : IEncodingManager |
| | 27 | | { |
| | 28 | | private readonly IFileSystem _fileSystem; |
| | 29 | | private readonly ILogger<EncodingManager> _logger; |
| | 30 | | private readonly IMediaEncoder _encoder; |
| | 31 | | private readonly IChapterRepository _chapterManager; |
| | 32 | | private readonly ILibraryManager _libraryManager; |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// The first chapter ticks. |
| | 36 | | /// </summary> |
| 0 | 37 | | private static readonly long _firstChapterTicks = TimeSpan.FromSeconds(15).Ticks; |
| | 38 | |
|
| | 39 | | public EncodingManager( |
| | 40 | | ILogger<EncodingManager> logger, |
| | 41 | | IFileSystem fileSystem, |
| | 42 | | IMediaEncoder encoder, |
| | 43 | | IChapterRepository chapterManager, |
| | 44 | | ILibraryManager libraryManager) |
| | 45 | | { |
| 21 | 46 | | _logger = logger; |
| 21 | 47 | | _fileSystem = fileSystem; |
| 21 | 48 | | _encoder = encoder; |
| 21 | 49 | | _chapterManager = chapterManager; |
| 21 | 50 | | _libraryManager = libraryManager; |
| 21 | 51 | | } |
| | 52 | |
|
| | 53 | | /// <summary> |
| | 54 | | /// Gets the chapter images data path. |
| | 55 | | /// </summary> |
| | 56 | | /// <value>The chapter images data path.</value> |
| | 57 | | private static string GetChapterImagesPath(BaseItem item) |
| | 58 | | { |
| 0 | 59 | | return Path.Combine(item.GetInternalMetadataPath(), "chapters"); |
| | 60 | | } |
| | 61 | |
|
| | 62 | | /// <summary> |
| | 63 | | /// Determines whether [is eligible for chapter image extraction] [the specified video]. |
| | 64 | | /// </summary> |
| | 65 | | /// <param name="video">The video.</param> |
| | 66 | | /// <param name="libraryOptions">The library options for the video.</param> |
| | 67 | | /// <returns><c>true</c> if [is eligible for chapter image extraction] [the specified video]; otherwise, <c>fals |
| | 68 | | private bool IsEligibleForChapterImageExtraction(Video video, LibraryOptions libraryOptions) |
| | 69 | | { |
| 0 | 70 | | if (video.IsPlaceHolder) |
| | 71 | | { |
| 0 | 72 | | return false; |
| | 73 | | } |
| | 74 | |
|
| 0 | 75 | | if (libraryOptions is null || !libraryOptions.EnableChapterImageExtraction) |
| | 76 | | { |
| 0 | 77 | | return false; |
| | 78 | | } |
| | 79 | |
|
| 0 | 80 | | if (video.IsShortcut) |
| | 81 | | { |
| 0 | 82 | | return false; |
| | 83 | | } |
| | 84 | |
|
| 0 | 85 | | if (!video.IsCompleteMedia) |
| | 86 | | { |
| 0 | 87 | | return false; |
| | 88 | | } |
| | 89 | |
|
| | 90 | | // Can't extract images if there are no video streams |
| 0 | 91 | | return video.DefaultVideoStreamIndex.HasValue; |
| | 92 | | } |
| | 93 | |
|
| | 94 | | private long GetAverageDurationBetweenChapters(IReadOnlyList<ChapterInfo> chapters) |
| | 95 | | { |
| 0 | 96 | | if (chapters.Count < 2) |
| | 97 | | { |
| 0 | 98 | | return 0; |
| | 99 | | } |
| | 100 | |
|
| 0 | 101 | | long sum = 0; |
| 0 | 102 | | for (int i = 1; i < chapters.Count; i++) |
| | 103 | | { |
| 0 | 104 | | sum += chapters[i].StartPositionTicks - chapters[i - 1].StartPositionTicks; |
| | 105 | | } |
| | 106 | |
|
| 0 | 107 | | return sum / chapters.Count; |
| | 108 | | } |
| | 109 | |
|
| | 110 | | public async Task<bool> RefreshChapterImages(Video video, IDirectoryService directoryService, IReadOnlyList<Chap |
| | 111 | | { |
| | 112 | | if (chapters.Count == 0) |
| | 113 | | { |
| | 114 | | return true; |
| | 115 | | } |
| | 116 | |
|
| | 117 | | var libraryOptions = _libraryManager.GetLibraryOptions(video); |
| | 118 | |
|
| | 119 | | if (!IsEligibleForChapterImageExtraction(video, libraryOptions)) |
| | 120 | | { |
| | 121 | | extractImages = false; |
| | 122 | | } |
| | 123 | |
|
| | 124 | | var averageChapterDuration = GetAverageDurationBetweenChapters(chapters); |
| | 125 | | var threshold = TimeSpan.FromSeconds(1).Ticks; |
| | 126 | | if (averageChapterDuration < threshold) |
| | 127 | | { |
| | 128 | | _logger.LogInformation("Skipping chapter image extraction for {Video} as the average chapter duration {A |
| | 129 | | extractImages = false; |
| | 130 | | } |
| | 131 | |
|
| | 132 | | var success = true; |
| | 133 | | var changesMade = false; |
| | 134 | |
|
| | 135 | | var runtimeTicks = video.RunTimeTicks ?? 0; |
| | 136 | |
|
| | 137 | | var currentImages = GetSavedChapterImages(video, directoryService); |
| | 138 | |
|
| | 139 | | foreach (var chapter in chapters) |
| | 140 | | { |
| | 141 | | if (chapter.StartPositionTicks >= runtimeTicks) |
| | 142 | | { |
| | 143 | | _logger.LogInformation("Stopping chapter extraction for {0} because a chapter was found with a posit |
| | 144 | | break; |
| | 145 | | } |
| | 146 | |
|
| | 147 | | var path = GetChapterImagePath(video, chapter.StartPositionTicks); |
| | 148 | |
|
| | 149 | | if (!currentImages.Contains(path, StringComparison.OrdinalIgnoreCase)) |
| | 150 | | { |
| | 151 | | if (extractImages) |
| | 152 | | { |
| | 153 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 154 | |
|
| | 155 | | try |
| | 156 | | { |
| | 157 | | // Add some time for the first chapter to make sure we don't end up with a black image |
| | 158 | | var time = chapter.StartPositionTicks == 0 ? TimeSpan.FromTicks(Math.Min(_firstChapterTicks, |
| | 159 | |
|
| | 160 | | var inputPath = video.Path; |
| | 161 | |
|
| | 162 | | Directory.CreateDirectory(Path.GetDirectoryName(path)); |
| | 163 | |
|
| | 164 | | var container = video.Container; |
| | 165 | | var mediaSource = new MediaSourceInfo |
| | 166 | | { |
| | 167 | | VideoType = video.VideoType, |
| | 168 | | IsoType = video.IsoType, |
| | 169 | | Protocol = video.PathProtocol.Value, |
| | 170 | | }; |
| | 171 | |
|
| | 172 | | var tempFile = await _encoder.ExtractVideoImage(inputPath, container, mediaSource, video.Get |
| | 173 | | File.Copy(tempFile, path, true); |
| | 174 | |
|
| | 175 | | try |
| | 176 | | { |
| | 177 | | _fileSystem.DeleteFile(tempFile); |
| | 178 | | } |
| | 179 | | catch (IOException ex) |
| | 180 | | { |
| | 181 | | _logger.LogError(ex, "Error deleting temporary chapter image encoding file {Path}", temp |
| | 182 | | } |
| | 183 | |
|
| | 184 | | chapter.ImagePath = path; |
| | 185 | | chapter.ImageDateModified = _fileSystem.GetLastWriteTimeUtc(path); |
| | 186 | | changesMade = true; |
| | 187 | | } |
| | 188 | | catch (Exception ex) |
| | 189 | | { |
| | 190 | | _logger.LogError(ex, "Error extracting chapter images for {0}", string.Join(',', video.Path) |
| | 191 | | success = false; |
| | 192 | | break; |
| | 193 | | } |
| | 194 | | } |
| | 195 | | else if (!string.IsNullOrEmpty(chapter.ImagePath)) |
| | 196 | | { |
| | 197 | | chapter.ImagePath = null; |
| | 198 | | changesMade = true; |
| | 199 | | } |
| | 200 | | } |
| | 201 | | else if (!string.Equals(path, chapter.ImagePath, StringComparison.OrdinalIgnoreCase)) |
| | 202 | | { |
| | 203 | | chapter.ImagePath = path; |
| | 204 | | chapter.ImageDateModified = _fileSystem.GetLastWriteTimeUtc(path); |
| | 205 | | changesMade = true; |
| | 206 | | } |
| | 207 | | else if (libraryOptions?.EnableChapterImageExtraction != true) |
| | 208 | | { |
| | 209 | | // We have an image for the current chapter but the user has disabled chapter image extraction -> de |
| | 210 | | chapter.ImagePath = null; |
| | 211 | | changesMade = true; |
| | 212 | | } |
| | 213 | | } |
| | 214 | |
|
| | 215 | | if (saveChapters && changesMade) |
| | 216 | | { |
| | 217 | | _chapterManager.SaveChapters(video.Id, chapters); |
| | 218 | | } |
| | 219 | |
|
| | 220 | | DeleteDeadImages(currentImages, chapters); |
| | 221 | |
|
| | 222 | | return success; |
| | 223 | | } |
| | 224 | |
|
| | 225 | | private string GetChapterImagePath(Video video, long chapterPositionTicks) |
| | 226 | | { |
| 0 | 227 | | var filename = video.DateModified.Ticks.ToString(CultureInfo.InvariantCulture) + "_" + chapterPositionTicks. |
| | 228 | |
|
| 0 | 229 | | return Path.Combine(GetChapterImagesPath(video), filename); |
| | 230 | | } |
| | 231 | |
|
| | 232 | | private static IReadOnlyList<string> GetSavedChapterImages(Video video, IDirectoryService directoryService) |
| | 233 | | { |
| 0 | 234 | | var path = GetChapterImagesPath(video); |
| 0 | 235 | | if (!Directory.Exists(path)) |
| | 236 | | { |
| 0 | 237 | | return Array.Empty<string>(); |
| | 238 | | } |
| | 239 | |
|
| | 240 | | try |
| | 241 | | { |
| 0 | 242 | | return directoryService.GetFilePaths(path); |
| | 243 | | } |
| 0 | 244 | | catch (IOException) |
| | 245 | | { |
| 0 | 246 | | return Array.Empty<string>(); |
| | 247 | | } |
| 0 | 248 | | } |
| | 249 | |
|
| | 250 | | private void DeleteDeadImages(IEnumerable<string> images, IEnumerable<ChapterInfo> chapters) |
| | 251 | | { |
| 0 | 252 | | var deadImages = images |
| 0 | 253 | | .Except(chapters.Select(i => i.ImagePath).Where(i => !string.IsNullOrEmpty(i)), StringComparer.OrdinalIg |
| 0 | 254 | | .Where(i => BaseItem.SupportedImageExtensions.Contains(Path.GetExtension(i.AsSpan()), StringComparison.O |
| 0 | 255 | | .ToList(); |
| | 256 | |
|
| 0 | 257 | | foreach (var image in deadImages) |
| | 258 | | { |
| 0 | 259 | | _logger.LogDebug("Deleting dead chapter image {Path}", image); |
| | 260 | |
|
| | 261 | | try |
| | 262 | | { |
| 0 | 263 | | _fileSystem.DeleteFile(image); |
| 0 | 264 | | } |
| 0 | 265 | | catch (IOException ex) |
| | 266 | | { |
| 0 | 267 | | _logger.LogError(ex, "Error deleting {Path}.", image); |
| 0 | 268 | | } |
| | 269 | | } |
| 0 | 270 | | } |
| | 271 | | } |
| | 272 | | } |