| | 1 | | #nullable disable |
| | 2 | | #pragma warning disable CS1591 |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Diagnostics; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Text.Json; |
| | 11 | | using System.Text.RegularExpressions; |
| | 12 | | using System.Threading; |
| | 13 | | using System.Threading.Tasks; |
| | 14 | | using AsyncKeyedLock; |
| | 15 | | using Jellyfin.Data.Enums; |
| | 16 | | using Jellyfin.Extensions; |
| | 17 | | using Jellyfin.Extensions.Json; |
| | 18 | | using Jellyfin.Extensions.Json.Converters; |
| | 19 | | using MediaBrowser.Common; |
| | 20 | | using MediaBrowser.Common.Configuration; |
| | 21 | | using MediaBrowser.Common.Extensions; |
| | 22 | | using MediaBrowser.Controller.Configuration; |
| | 23 | | using MediaBrowser.Controller.Extensions; |
| | 24 | | using MediaBrowser.Controller.MediaEncoding; |
| | 25 | | using MediaBrowser.MediaEncoding.Probing; |
| | 26 | | using MediaBrowser.Model.Configuration; |
| | 27 | | using MediaBrowser.Model.Dlna; |
| | 28 | | using MediaBrowser.Model.Drawing; |
| | 29 | | using MediaBrowser.Model.Dto; |
| | 30 | | using MediaBrowser.Model.Entities; |
| | 31 | | using MediaBrowser.Model.Globalization; |
| | 32 | | using MediaBrowser.Model.IO; |
| | 33 | | using MediaBrowser.Model.MediaInfo; |
| | 34 | | using Microsoft.Extensions.Configuration; |
| | 35 | | using Microsoft.Extensions.Logging; |
| | 36 | |
|
| | 37 | | namespace MediaBrowser.MediaEncoding.Encoder |
| | 38 | | { |
| | 39 | | /// <summary> |
| | 40 | | /// Class MediaEncoder. |
| | 41 | | /// </summary> |
| | 42 | | public partial class MediaEncoder : IMediaEncoder, IDisposable |
| | 43 | | { |
| | 44 | | /// <summary> |
| | 45 | | /// The default SDR image extraction timeout in milliseconds. |
| | 46 | | /// </summary> |
| | 47 | | internal const int DefaultSdrImageExtractionTimeout = 10000; |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// The default HDR image extraction timeout in milliseconds. |
| | 51 | | /// </summary> |
| | 52 | | internal const int DefaultHdrImageExtractionTimeout = 20000; |
| | 53 | |
|
| | 54 | | private readonly ILogger<MediaEncoder> _logger; |
| | 55 | | private readonly IServerConfigurationManager _configurationManager; |
| | 56 | | private readonly IFileSystem _fileSystem; |
| | 57 | | private readonly ILocalizationManager _localization; |
| | 58 | | private readonly IBlurayExaminer _blurayExaminer; |
| | 59 | | private readonly IConfiguration _config; |
| | 60 | | private readonly IServerConfigurationManager _serverConfig; |
| | 61 | | private readonly string _startupOptionFFmpegPath; |
| | 62 | |
|
| | 63 | | private readonly AsyncNonKeyedLocker _thumbnailResourcePool; |
| | 64 | |
|
| 22 | 65 | | private readonly Lock _runningProcessesLock = new(); |
| 22 | 66 | | private readonly List<ProcessWrapper> _runningProcesses = new List<ProcessWrapper>(); |
| | 67 | |
|
| | 68 | | // MediaEncoder is registered as a Singleton |
| | 69 | | private readonly JsonSerializerOptions _jsonSerializerOptions; |
| | 70 | |
|
| 22 | 71 | | private List<string> _encoders = new List<string>(); |
| 22 | 72 | | private List<string> _decoders = new List<string>(); |
| 22 | 73 | | private List<string> _hwaccels = new List<string>(); |
| 22 | 74 | | private List<string> _filters = new List<string>(); |
| 22 | 75 | | private IDictionary<int, bool> _filtersWithOption = new Dictionary<int, bool>(); |
| | 76 | |
|
| | 77 | | private bool _isPkeyPauseSupported = false; |
| | 78 | | private bool _isLowPriorityHwDecodeSupported = false; |
| | 79 | |
|
| | 80 | | private bool _isVaapiDeviceAmd = false; |
| | 81 | | private bool _isVaapiDeviceInteliHD = false; |
| | 82 | | private bool _isVaapiDeviceInteli965 = false; |
| | 83 | | private bool _isVaapiDeviceSupportVulkanDrmModifier = false; |
| | 84 | | private bool _isVaapiDeviceSupportVulkanDrmInterop = false; |
| | 85 | |
|
| | 86 | | private bool _isVideoToolboxAv1DecodeAvailable = false; |
| | 87 | |
|
| 0 | 88 | | private static string[] _vulkanImageDrmFmtModifierExts = |
| 0 | 89 | | { |
| 0 | 90 | | "VK_EXT_image_drm_format_modifier", |
| 0 | 91 | | }; |
| | 92 | |
|
| 0 | 93 | | private static string[] _vulkanExternalMemoryDmaBufExts = |
| 0 | 94 | | { |
| 0 | 95 | | "VK_KHR_external_memory_fd", |
| 0 | 96 | | "VK_EXT_external_memory_dma_buf", |
| 0 | 97 | | "VK_KHR_external_semaphore_fd", |
| 0 | 98 | | "VK_EXT_external_memory_host" |
| 0 | 99 | | }; |
| | 100 | |
|
| | 101 | | private Version _ffmpegVersion = null; |
| 22 | 102 | | private string _ffmpegPath = string.Empty; |
| | 103 | | private string _ffprobePath; |
| | 104 | | private int _threads; |
| | 105 | |
|
| | 106 | | public MediaEncoder( |
| | 107 | | ILogger<MediaEncoder> logger, |
| | 108 | | IServerConfigurationManager configurationManager, |
| | 109 | | IFileSystem fileSystem, |
| | 110 | | IBlurayExaminer blurayExaminer, |
| | 111 | | ILocalizationManager localization, |
| | 112 | | IConfiguration config, |
| | 113 | | IServerConfigurationManager serverConfig) |
| | 114 | | { |
| 22 | 115 | | _logger = logger; |
| 22 | 116 | | _configurationManager = configurationManager; |
| 22 | 117 | | _fileSystem = fileSystem; |
| 22 | 118 | | _blurayExaminer = blurayExaminer; |
| 22 | 119 | | _localization = localization; |
| 22 | 120 | | _config = config; |
| 22 | 121 | | _serverConfig = serverConfig; |
| 22 | 122 | | _startupOptionFFmpegPath = config.GetValue<string>(Controller.Extensions.ConfigurationExtensions.FfmpegPathK |
| | 123 | |
|
| 22 | 124 | | _jsonSerializerOptions = new JsonSerializerOptions(JsonDefaults.Options); |
| 22 | 125 | | _jsonSerializerOptions.Converters.Add(new JsonBoolStringConverter()); |
| | 126 | |
|
| | 127 | | // Although the type is not nullable, this might still be null during unit tests |
| 22 | 128 | | var semaphoreCount = serverConfig.Configuration?.ParallelImageEncodingLimit ?? 0; |
| 22 | 129 | | if (semaphoreCount < 1) |
| | 130 | | { |
| 22 | 131 | | semaphoreCount = Environment.ProcessorCount; |
| | 132 | | } |
| | 133 | |
|
| 22 | 134 | | _thumbnailResourcePool = new(semaphoreCount); |
| 22 | 135 | | } |
| | 136 | |
|
| | 137 | | /// <inheritdoc /> |
| 0 | 138 | | public string EncoderPath => _ffmpegPath; |
| | 139 | |
|
| | 140 | | /// <inheritdoc /> |
| 0 | 141 | | public string ProbePath => _ffprobePath; |
| | 142 | |
|
| | 143 | | /// <inheritdoc /> |
| 0 | 144 | | public Version EncoderVersion => _ffmpegVersion; |
| | 145 | |
|
| | 146 | | /// <inheritdoc /> |
| 0 | 147 | | public bool IsPkeyPauseSupported => _isPkeyPauseSupported; |
| | 148 | |
|
| | 149 | | /// <inheritdoc /> |
| 0 | 150 | | public bool IsVaapiDeviceAmd => _isVaapiDeviceAmd; |
| | 151 | |
|
| | 152 | | /// <inheritdoc /> |
| 0 | 153 | | public bool IsVaapiDeviceInteliHD => _isVaapiDeviceInteliHD; |
| | 154 | |
|
| | 155 | | /// <inheritdoc /> |
| 0 | 156 | | public bool IsVaapiDeviceInteli965 => _isVaapiDeviceInteli965; |
| | 157 | |
|
| | 158 | | /// <inheritdoc /> |
| 0 | 159 | | public bool IsVaapiDeviceSupportVulkanDrmModifier => _isVaapiDeviceSupportVulkanDrmModifier; |
| | 160 | |
|
| | 161 | | /// <inheritdoc /> |
| 0 | 162 | | public bool IsVaapiDeviceSupportVulkanDrmInterop => _isVaapiDeviceSupportVulkanDrmInterop; |
| | 163 | |
|
| 0 | 164 | | public bool IsVideoToolboxAv1DecodeAvailable => _isVideoToolboxAv1DecodeAvailable; |
| | 165 | |
|
| | 166 | | [GeneratedRegex(@"[^\/\\]+?(\.[^\/\\\n.]+)?$")] |
| | 167 | | private static partial Regex FfprobePathRegex(); |
| | 168 | |
|
| | 169 | | /// <summary> |
| | 170 | | /// Run at startup to validate ffmpeg. |
| | 171 | | /// Sets global variables FFmpegPath. |
| | 172 | | /// Precedence is: CLI/Env var > Config > $PATH. |
| | 173 | | /// </summary> |
| | 174 | | /// <returns>bool indicates whether a valid ffmpeg is found.</returns> |
| | 175 | | public bool SetFFmpegPath() |
| | 176 | | { |
| 21 | 177 | | var skipValidation = _config.GetFFmpegSkipValidation(); |
| 21 | 178 | | if (skipValidation) |
| | 179 | | { |
| 21 | 180 | | _logger.LogWarning("FFmpeg: Skipping FFmpeg Validation due to FFmpeg:novalidation set to true"); |
| 21 | 181 | | return true; |
| | 182 | | } |
| | 183 | |
|
| | 184 | | // 1) Check if the --ffmpeg CLI switch has been given |
| 0 | 185 | | var ffmpegPath = _startupOptionFFmpegPath; |
| 0 | 186 | | string ffmpegPathSetMethodText = "command line or environment variable"; |
| 0 | 187 | | if (string.IsNullOrEmpty(ffmpegPath)) |
| | 188 | | { |
| | 189 | | // 2) Custom path stored in config/encoding xml file under tag <EncoderAppPath> should be used as a fall |
| 0 | 190 | | ffmpegPath = _configurationManager.GetEncodingOptions().EncoderAppPath; |
| 0 | 191 | | ffmpegPathSetMethodText = "encoding.xml config file"; |
| 0 | 192 | | if (string.IsNullOrEmpty(ffmpegPath)) |
| | 193 | | { |
| | 194 | | // 3) Check "ffmpeg" |
| 0 | 195 | | ffmpegPath = "ffmpeg"; |
| 0 | 196 | | ffmpegPathSetMethodText = "system $PATH"; |
| | 197 | | } |
| | 198 | | } |
| | 199 | |
|
| 0 | 200 | | if (!ValidatePath(ffmpegPath)) |
| | 201 | | { |
| 0 | 202 | | _ffmpegPath = null; |
| 0 | 203 | | _logger.LogError("FFmpeg: Path set by {FfmpegPathSetMethodText} is invalid", ffmpegPathSetMethodText); |
| 0 | 204 | | return false; |
| | 205 | | } |
| | 206 | |
|
| | 207 | | // Write the FFmpeg path to the config/encoding.xml file as <EncoderAppPathDisplay> so it appears in UI |
| 0 | 208 | | var options = _configurationManager.GetEncodingOptions(); |
| 0 | 209 | | options.EncoderAppPathDisplay = _ffmpegPath ?? string.Empty; |
| 0 | 210 | | _configurationManager.SaveConfiguration("encoding", options); |
| | 211 | |
|
| | 212 | | // Only if mpeg path is set, try and set path to probe |
| 0 | 213 | | if (_ffmpegPath is not null) |
| | 214 | | { |
| | 215 | | // Determine a probe path from the mpeg path |
| 0 | 216 | | _ffprobePath = FfprobePathRegex().Replace(_ffmpegPath, "ffprobe$1"); |
| | 217 | |
|
| | 218 | | // Interrogate to understand what coders are supported |
| 0 | 219 | | var validator = new EncoderValidator(_logger, _ffmpegPath); |
| | 220 | |
|
| 0 | 221 | | SetAvailableDecoders(validator.GetDecoders()); |
| 0 | 222 | | SetAvailableEncoders(validator.GetEncoders()); |
| 0 | 223 | | SetAvailableFilters(validator.GetFilters()); |
| 0 | 224 | | SetAvailableFiltersWithOption(validator.GetFiltersWithOption()); |
| 0 | 225 | | SetAvailableHwaccels(validator.GetHwaccels()); |
| 0 | 226 | | SetMediaEncoderVersion(validator); |
| | 227 | |
|
| 0 | 228 | | _threads = EncodingHelper.GetNumberOfThreads(null, options, null); |
| | 229 | |
|
| 0 | 230 | | _isPkeyPauseSupported = validator.CheckSupportedRuntimeKey("p pause transcoding", _ffmpegVersion); |
| 0 | 231 | | _isLowPriorityHwDecodeSupported = validator.CheckSupportedHwaccelFlag("low_priority"); |
| | 232 | |
|
| | 233 | | // Check the Vaapi device vendor |
| 0 | 234 | | if (OperatingSystem.IsLinux() |
| 0 | 235 | | && SupportsHwaccel("vaapi") |
| 0 | 236 | | && !string.IsNullOrEmpty(options.VaapiDevice) |
| 0 | 237 | | && options.HardwareAccelerationType == HardwareAccelerationType.vaapi) |
| | 238 | | { |
| 0 | 239 | | _isVaapiDeviceAmd = validator.CheckVaapiDeviceByDriverName("Mesa Gallium driver", options.VaapiDevic |
| 0 | 240 | | _isVaapiDeviceInteliHD = validator.CheckVaapiDeviceByDriverName("Intel iHD driver", options.VaapiDev |
| 0 | 241 | | _isVaapiDeviceInteli965 = validator.CheckVaapiDeviceByDriverName("Intel i965 driver", options.VaapiD |
| 0 | 242 | | _isVaapiDeviceSupportVulkanDrmModifier = validator.CheckVulkanDrmDeviceByExtensionName(options.Vaapi |
| 0 | 243 | | _isVaapiDeviceSupportVulkanDrmInterop = validator.CheckVulkanDrmDeviceByExtensionName(options.VaapiD |
| | 244 | |
|
| 0 | 245 | | if (_isVaapiDeviceAmd) |
| | 246 | | { |
| 0 | 247 | | _logger.LogInformation("VAAPI device {RenderNodePath} is AMD GPU", options.VaapiDevice); |
| | 248 | | } |
| 0 | 249 | | else if (_isVaapiDeviceInteliHD) |
| | 250 | | { |
| 0 | 251 | | _logger.LogInformation("VAAPI device {RenderNodePath} is Intel GPU (iHD)", options.VaapiDevice); |
| | 252 | | } |
| 0 | 253 | | else if (_isVaapiDeviceInteli965) |
| | 254 | | { |
| 0 | 255 | | _logger.LogInformation("VAAPI device {RenderNodePath} is Intel GPU (i965)", options.VaapiDevice) |
| | 256 | | } |
| | 257 | |
|
| 0 | 258 | | if (_isVaapiDeviceSupportVulkanDrmModifier) |
| | 259 | | { |
| 0 | 260 | | _logger.LogInformation("VAAPI device {RenderNodePath} supports Vulkan DRM modifier", options.Vaa |
| | 261 | | } |
| | 262 | |
|
| 0 | 263 | | if (_isVaapiDeviceSupportVulkanDrmInterop) |
| | 264 | | { |
| 0 | 265 | | _logger.LogInformation("VAAPI device {RenderNodePath} supports Vulkan DRM interop", options.Vaap |
| | 266 | | } |
| | 267 | | } |
| | 268 | |
|
| | 269 | | // Check if VideoToolbox supports AV1 decode |
| 0 | 270 | | if (OperatingSystem.IsMacOS() && SupportsHwaccel("videotoolbox")) |
| | 271 | | { |
| 0 | 272 | | _isVideoToolboxAv1DecodeAvailable = validator.CheckIsVideoToolboxAv1DecodeAvailable(); |
| | 273 | | } |
| | 274 | | } |
| | 275 | |
|
| 0 | 276 | | _logger.LogInformation("FFmpeg: {FfmpegPath}", _ffmpegPath ?? string.Empty); |
| 0 | 277 | | return !string.IsNullOrWhiteSpace(ffmpegPath); |
| | 278 | | } |
| | 279 | |
|
| | 280 | | /// <summary> |
| | 281 | | /// Validates the supplied FQPN to ensure it is a ffmpeg utility. |
| | 282 | | /// If checks pass, global variable FFmpegPath is updated. |
| | 283 | | /// </summary> |
| | 284 | | /// <param name="path">FQPN to test.</param> |
| | 285 | | /// <returns><c>true</c> if the version validation succeeded; otherwise, <c>false</c>.</returns> |
| | 286 | | private bool ValidatePath(string path) |
| | 287 | | { |
| 0 | 288 | | if (string.IsNullOrEmpty(path)) |
| | 289 | | { |
| 0 | 290 | | return false; |
| | 291 | | } |
| | 292 | |
|
| 0 | 293 | | bool rc = new EncoderValidator(_logger, path).ValidateVersion(); |
| 0 | 294 | | if (!rc) |
| | 295 | | { |
| 0 | 296 | | _logger.LogError("FFmpeg: Failed version check: {Path}", path); |
| 0 | 297 | | return false; |
| | 298 | | } |
| | 299 | |
|
| 0 | 300 | | _ffmpegPath = path; |
| 0 | 301 | | return true; |
| | 302 | | } |
| | 303 | |
|
| | 304 | | private string GetEncoderPathFromDirectory(string path, string filename, bool recursive = false) |
| | 305 | | { |
| | 306 | | try |
| | 307 | | { |
| 0 | 308 | | var files = _fileSystem.GetFilePaths(path, recursive); |
| | 309 | |
|
| 0 | 310 | | return files.FirstOrDefault(i => Path.GetFileNameWithoutExtension(i.AsSpan()).Equals(filename, StringCom |
| 0 | 311 | | && !Path.GetExtension(i.AsSpan()).Equals(".c", StringComparison.Ordi |
| | 312 | | } |
| 0 | 313 | | catch (Exception) |
| | 314 | | { |
| | 315 | | // Trap all exceptions, like DirNotExists, and return null |
| 0 | 316 | | return null; |
| | 317 | | } |
| 0 | 318 | | } |
| | 319 | |
|
| | 320 | | public void SetAvailableEncoders(IEnumerable<string> list) |
| | 321 | | { |
| 0 | 322 | | _encoders = list.ToList(); |
| 0 | 323 | | } |
| | 324 | |
|
| | 325 | | public void SetAvailableDecoders(IEnumerable<string> list) |
| | 326 | | { |
| 0 | 327 | | _decoders = list.ToList(); |
| 0 | 328 | | } |
| | 329 | |
|
| | 330 | | public void SetAvailableHwaccels(IEnumerable<string> list) |
| | 331 | | { |
| 0 | 332 | | _hwaccels = list.ToList(); |
| 0 | 333 | | } |
| | 334 | |
|
| | 335 | | public void SetAvailableFilters(IEnumerable<string> list) |
| | 336 | | { |
| 0 | 337 | | _filters = list.ToList(); |
| 0 | 338 | | } |
| | 339 | |
|
| | 340 | | public void SetAvailableFiltersWithOption(IDictionary<int, bool> dict) |
| | 341 | | { |
| 0 | 342 | | _filtersWithOption = dict; |
| 0 | 343 | | } |
| | 344 | |
|
| | 345 | | public void SetMediaEncoderVersion(EncoderValidator validator) |
| | 346 | | { |
| 0 | 347 | | _ffmpegVersion = validator.GetFFmpegVersion(); |
| 0 | 348 | | } |
| | 349 | |
|
| | 350 | | /// <inheritdoc /> |
| | 351 | | public bool SupportsEncoder(string encoder) |
| | 352 | | { |
| 0 | 353 | | return _encoders.Contains(encoder, StringComparer.OrdinalIgnoreCase); |
| | 354 | | } |
| | 355 | |
|
| | 356 | | /// <inheritdoc /> |
| | 357 | | public bool SupportsDecoder(string decoder) |
| | 358 | | { |
| 0 | 359 | | return _decoders.Contains(decoder, StringComparer.OrdinalIgnoreCase); |
| | 360 | | } |
| | 361 | |
|
| | 362 | | /// <inheritdoc /> |
| | 363 | | public bool SupportsHwaccel(string hwaccel) |
| | 364 | | { |
| 0 | 365 | | return _hwaccels.Contains(hwaccel, StringComparer.OrdinalIgnoreCase); |
| | 366 | | } |
| | 367 | |
|
| | 368 | | /// <inheritdoc /> |
| | 369 | | public bool SupportsFilter(string filter) |
| | 370 | | { |
| 0 | 371 | | return _filters.Contains(filter, StringComparer.OrdinalIgnoreCase); |
| | 372 | | } |
| | 373 | |
|
| | 374 | | /// <inheritdoc /> |
| | 375 | | public bool SupportsFilterWithOption(FilterOptionType option) |
| | 376 | | { |
| 0 | 377 | | if (_filtersWithOption.TryGetValue((int)option, out var val)) |
| | 378 | | { |
| 0 | 379 | | return val; |
| | 380 | | } |
| | 381 | |
|
| 0 | 382 | | return false; |
| | 383 | | } |
| | 384 | |
|
| | 385 | | public bool CanEncodeToAudioCodec(string codec) |
| | 386 | | { |
| 0 | 387 | | if (string.Equals(codec, "opus", StringComparison.OrdinalIgnoreCase)) |
| | 388 | | { |
| 0 | 389 | | codec = "libopus"; |
| | 390 | | } |
| 0 | 391 | | else if (string.Equals(codec, "mp3", StringComparison.OrdinalIgnoreCase)) |
| | 392 | | { |
| 0 | 393 | | codec = "libmp3lame"; |
| | 394 | | } |
| | 395 | |
|
| 0 | 396 | | return SupportsEncoder(codec); |
| | 397 | | } |
| | 398 | |
|
| | 399 | | public bool CanEncodeToSubtitleCodec(string codec) |
| | 400 | | { |
| | 401 | | // TODO |
| 0 | 402 | | return true; |
| | 403 | | } |
| | 404 | |
|
| | 405 | | /// <inheritdoc /> |
| | 406 | | public Task<MediaInfo> GetMediaInfo(MediaInfoRequest request, CancellationToken cancellationToken) |
| | 407 | | { |
| 0 | 408 | | var extractChapters = request.MediaType == DlnaProfileType.Video && request.ExtractChapters; |
| 0 | 409 | | var extraArgs = GetExtraArguments(request); |
| | 410 | |
|
| 0 | 411 | | return GetMediaInfoInternal( |
| 0 | 412 | | GetInputArgument(request.MediaSource.Path, request.MediaSource), |
| 0 | 413 | | request.MediaSource.Path, |
| 0 | 414 | | request.MediaSource.Protocol, |
| 0 | 415 | | extractChapters, |
| 0 | 416 | | extraArgs, |
| 0 | 417 | | request.MediaType == DlnaProfileType.Audio, |
| 0 | 418 | | request.MediaSource.VideoType, |
| 0 | 419 | | cancellationToken); |
| | 420 | | } |
| | 421 | |
|
| | 422 | | internal string GetExtraArguments(MediaInfoRequest request) |
| | 423 | | { |
| 1 | 424 | | var ffmpegAnalyzeDuration = _config.GetFFmpegAnalyzeDuration() ?? string.Empty; |
| 1 | 425 | | var ffmpegProbeSize = _config.GetFFmpegProbeSize() ?? string.Empty; |
| 1 | 426 | | var analyzeDuration = string.Empty; |
| 1 | 427 | | var extraArgs = string.Empty; |
| | 428 | |
|
| 1 | 429 | | if (request.MediaSource.AnalyzeDurationMs > 0) |
| | 430 | | { |
| 0 | 431 | | analyzeDuration = "-analyzeduration " + (request.MediaSource.AnalyzeDurationMs * 1000); |
| | 432 | | } |
| 1 | 433 | | else if (!string.IsNullOrEmpty(ffmpegAnalyzeDuration)) |
| | 434 | | { |
| 0 | 435 | | analyzeDuration = "-analyzeduration " + ffmpegAnalyzeDuration; |
| | 436 | | } |
| | 437 | |
|
| 1 | 438 | | if (!string.IsNullOrEmpty(analyzeDuration)) |
| | 439 | | { |
| 0 | 440 | | extraArgs = analyzeDuration; |
| | 441 | | } |
| | 442 | |
|
| 1 | 443 | | if (!string.IsNullOrEmpty(ffmpegProbeSize)) |
| | 444 | | { |
| 0 | 445 | | extraArgs += " -probesize " + ffmpegProbeSize; |
| | 446 | | } |
| | 447 | |
|
| 1 | 448 | | if (request.MediaSource.RequiredHttpHeaders.TryGetValue("User-Agent", out var userAgent)) |
| | 449 | | { |
| 1 | 450 | | extraArgs += $" -user_agent \"{userAgent}\""; |
| | 451 | | } |
| | 452 | |
|
| 1 | 453 | | if (request.MediaSource.Protocol == MediaProtocol.Rtsp) |
| | 454 | | { |
| 0 | 455 | | extraArgs += " -rtsp_transport tcp+udp -rtsp_flags prefer_tcp"; |
| | 456 | | } |
| | 457 | |
|
| 1 | 458 | | return extraArgs; |
| | 459 | | } |
| | 460 | |
|
| | 461 | | /// <inheritdoc /> |
| | 462 | | public string GetInputArgument(IReadOnlyList<string> inputFiles, MediaSourceInfo mediaSource) |
| | 463 | | { |
| 0 | 464 | | return EncodingUtils.GetInputArgument("file", inputFiles, mediaSource.Protocol); |
| | 465 | | } |
| | 466 | |
|
| | 467 | | /// <inheritdoc /> |
| | 468 | | public string GetInputArgument(string inputFile, MediaSourceInfo mediaSource) |
| | 469 | | { |
| 0 | 470 | | var prefix = "file"; |
| 0 | 471 | | if (mediaSource.IsoType == IsoType.BluRay) |
| | 472 | | { |
| 0 | 473 | | prefix = "bluray"; |
| | 474 | | } |
| | 475 | |
|
| 0 | 476 | | return EncodingUtils.GetInputArgument(prefix, new[] { inputFile }, mediaSource.Protocol); |
| | 477 | | } |
| | 478 | |
|
| | 479 | | /// <inheritdoc /> |
| | 480 | | public string GetExternalSubtitleInputArgument(string inputFile) |
| | 481 | | { |
| | 482 | | const string Prefix = "file"; |
| | 483 | |
|
| 0 | 484 | | return EncodingUtils.GetInputArgument(Prefix, new[] { inputFile }, MediaProtocol.File); |
| | 485 | | } |
| | 486 | |
|
| | 487 | | /// <summary> |
| | 488 | | /// Gets the media info internal. |
| | 489 | | /// </summary> |
| | 490 | | /// <returns>Task{MediaInfoResult}.</returns> |
| | 491 | | private async Task<MediaInfo> GetMediaInfoInternal( |
| | 492 | | string inputPath, |
| | 493 | | string primaryPath, |
| | 494 | | MediaProtocol protocol, |
| | 495 | | bool extractChapters, |
| | 496 | | string probeSizeArgument, |
| | 497 | | bool isAudio, |
| | 498 | | VideoType? videoType, |
| | 499 | | CancellationToken cancellationToken) |
| | 500 | | { |
| | 501 | | var args = extractChapters |
| | 502 | | ? "{0} -i {1} -threads {2} -v warning -print_format json -show_streams -show_chapters -show_format" |
| | 503 | | : "{0} -i {1} -threads {2} -v warning -print_format json -show_streams -show_format"; |
| | 504 | | args = string.Format(CultureInfo.InvariantCulture, args, probeSizeArgument, inputPath, _threads).Trim(); |
| | 505 | |
|
| | 506 | | var process = new Process |
| | 507 | | { |
| | 508 | | StartInfo = new ProcessStartInfo |
| | 509 | | { |
| | 510 | | CreateNoWindow = true, |
| | 511 | | UseShellExecute = false, |
| | 512 | |
|
| | 513 | | // Must consume both or ffmpeg may hang due to deadlocks. |
| | 514 | | RedirectStandardOutput = true, |
| | 515 | |
|
| | 516 | | FileName = _ffprobePath, |
| | 517 | | Arguments = args, |
| | 518 | |
|
| | 519 | | WindowStyle = ProcessWindowStyle.Hidden, |
| | 520 | | ErrorDialog = false, |
| | 521 | | }, |
| | 522 | | EnableRaisingEvents = true |
| | 523 | | }; |
| | 524 | |
|
| | 525 | | _logger.LogInformation("Starting {ProcessFileName} with args {ProcessArgs}", _ffprobePath, args); |
| | 526 | |
|
| | 527 | | var memoryStream = new MemoryStream(); |
| | 528 | | await using (memoryStream.ConfigureAwait(false)) |
| | 529 | | using (var processWrapper = new ProcessWrapper(process, this)) |
| | 530 | | { |
| | 531 | | StartProcess(processWrapper); |
| | 532 | | using var reader = process.StandardOutput; |
| | 533 | | await reader.BaseStream.CopyToAsync(memoryStream, cancellationToken).ConfigureAwait(false); |
| | 534 | | memoryStream.Seek(0, SeekOrigin.Begin); |
| | 535 | | InternalMediaInfoResult result; |
| | 536 | | try |
| | 537 | | { |
| | 538 | | result = await JsonSerializer.DeserializeAsync<InternalMediaInfoResult>( |
| | 539 | | memoryStream, |
| | 540 | | _jsonSerializerOptions, |
| | 541 | | cancellationToken).ConfigureAwait(false); |
| | 542 | | } |
| | 543 | | catch |
| | 544 | | { |
| | 545 | | StopProcess(processWrapper, 100); |
| | 546 | |
|
| | 547 | | throw; |
| | 548 | | } |
| | 549 | |
|
| | 550 | | if (result is null || (result.Streams is null && result.Format is null)) |
| | 551 | | { |
| | 552 | | throw new FfmpegException("ffprobe failed - streams and format are both null."); |
| | 553 | | } |
| | 554 | |
|
| | 555 | | if (result.Streams is not null) |
| | 556 | | { |
| | 557 | | // Normalize aspect ratio if invalid |
| | 558 | | foreach (var stream in result.Streams) |
| | 559 | | { |
| | 560 | | if (string.Equals(stream.DisplayAspectRatio, "0:1", StringComparison.OrdinalIgnoreCase)) |
| | 561 | | { |
| | 562 | | stream.DisplayAspectRatio = string.Empty; |
| | 563 | | } |
| | 564 | |
|
| | 565 | | if (string.Equals(stream.SampleAspectRatio, "0:1", StringComparison.OrdinalIgnoreCase)) |
| | 566 | | { |
| | 567 | | stream.SampleAspectRatio = string.Empty; |
| | 568 | | } |
| | 569 | | } |
| | 570 | | } |
| | 571 | |
|
| | 572 | | return new ProbeResultNormalizer(_logger, _localization).GetMediaInfo(result, videoType, isAudio, primar |
| | 573 | | } |
| | 574 | | } |
| | 575 | |
|
| | 576 | | /// <inheritdoc /> |
| | 577 | | public Task<string> ExtractAudioImage(string path, int? imageStreamIndex, CancellationToken cancellationToken) |
| | 578 | | { |
| 0 | 579 | | var mediaSource = new MediaSourceInfo |
| 0 | 580 | | { |
| 0 | 581 | | Protocol = MediaProtocol.File |
| 0 | 582 | | }; |
| | 583 | |
|
| 0 | 584 | | return ExtractImage(path, null, null, imageStreamIndex, mediaSource, true, null, null, ImageFormat.Jpg, canc |
| | 585 | | } |
| | 586 | |
|
| | 587 | | /// <inheritdoc /> |
| | 588 | | public Task<string> ExtractVideoImage(string inputFile, string container, MediaSourceInfo mediaSource, MediaStre |
| | 589 | | { |
| 0 | 590 | | return ExtractImage(inputFile, container, videoStream, null, mediaSource, false, threedFormat, offset, Image |
| | 591 | | } |
| | 592 | |
|
| | 593 | | /// <inheritdoc /> |
| | 594 | | public Task<string> ExtractVideoImage(string inputFile, string container, MediaSourceInfo mediaSource, MediaStre |
| | 595 | | { |
| 0 | 596 | | return ExtractImage(inputFile, container, imageStream, imageStreamIndex, mediaSource, false, null, null, tar |
| | 597 | | } |
| | 598 | |
|
| | 599 | | private async Task<string> ExtractImage( |
| | 600 | | string inputFile, |
| | 601 | | string container, |
| | 602 | | MediaStream videoStream, |
| | 603 | | int? imageStreamIndex, |
| | 604 | | MediaSourceInfo mediaSource, |
| | 605 | | bool isAudio, |
| | 606 | | Video3DFormat? threedFormat, |
| | 607 | | TimeSpan? offset, |
| | 608 | | ImageFormat? targetFormat, |
| | 609 | | CancellationToken cancellationToken) |
| | 610 | | { |
| | 611 | | var inputArgument = GetInputPathArgument(inputFile, mediaSource); |
| | 612 | |
|
| | 613 | | if (!isAudio) |
| | 614 | | { |
| | 615 | | try |
| | 616 | | { |
| | 617 | | return await ExtractImageInternal(inputArgument, container, videoStream, imageStreamIndex, threedFor |
| | 618 | | } |
| | 619 | | catch (ArgumentException) |
| | 620 | | { |
| | 621 | | throw; |
| | 622 | | } |
| | 623 | | catch (Exception ex) |
| | 624 | | { |
| | 625 | | _logger.LogError(ex, "I-frame image extraction failed, will attempt standard way. Input: {Arguments} |
| | 626 | | } |
| | 627 | | } |
| | 628 | |
|
| | 629 | | return await ExtractImageInternal(inputArgument, container, videoStream, imageStreamIndex, threedFormat, off |
| | 630 | | } |
| | 631 | |
|
| | 632 | | private string GetImageResolutionParameter() |
| | 633 | | { |
| 0 | 634 | | var imageResolutionParameter = _serverConfig.Configuration.ChapterImageResolution switch |
| 0 | 635 | | { |
| 0 | 636 | | ImageResolution.P144 => "256x144", |
| 0 | 637 | | ImageResolution.P240 => "426x240", |
| 0 | 638 | | ImageResolution.P360 => "640x360", |
| 0 | 639 | | ImageResolution.P480 => "854x480", |
| 0 | 640 | | ImageResolution.P720 => "1280x720", |
| 0 | 641 | | ImageResolution.P1080 => "1920x1080", |
| 0 | 642 | | ImageResolution.P1440 => "2560x1440", |
| 0 | 643 | | ImageResolution.P2160 => "3840x2160", |
| 0 | 644 | | _ => string.Empty |
| 0 | 645 | | }; |
| | 646 | |
|
| 0 | 647 | | if (!string.IsNullOrEmpty(imageResolutionParameter)) |
| | 648 | | { |
| 0 | 649 | | imageResolutionParameter = " -s " + imageResolutionParameter; |
| | 650 | | } |
| | 651 | |
|
| 0 | 652 | | return imageResolutionParameter; |
| | 653 | | } |
| | 654 | |
|
| | 655 | | private async Task<string> ExtractImageInternal( |
| | 656 | | string inputPath, |
| | 657 | | string container, |
| | 658 | | MediaStream videoStream, |
| | 659 | | int? imageStreamIndex, |
| | 660 | | Video3DFormat? threedFormat, |
| | 661 | | TimeSpan? offset, |
| | 662 | | bool useIFrame, |
| | 663 | | ImageFormat? targetFormat, |
| | 664 | | bool isAudio, |
| | 665 | | CancellationToken cancellationToken) |
| | 666 | | { |
| | 667 | | ArgumentException.ThrowIfNullOrEmpty(inputPath); |
| | 668 | |
|
| | 669 | | var useTradeoff = _config.GetFFmpegImgExtractPerfTradeoff(); |
| | 670 | |
|
| | 671 | | var outputExtension = targetFormat?.GetExtension() ?? ".jpg"; |
| | 672 | |
|
| | 673 | | var tempExtractPath = Path.Combine(_configurationManager.ApplicationPaths.TempDirectory, Guid.NewGuid() + ou |
| | 674 | | Directory.CreateDirectory(Path.GetDirectoryName(tempExtractPath)); |
| | 675 | |
|
| | 676 | | // deint -> scale -> thumbnail -> tonemap. |
| | 677 | | // put the SW tonemap right after the thumbnail to do it only once to reduce cpu usage. |
| | 678 | | var filters = new List<string>(); |
| | 679 | |
|
| | 680 | | // deinterlace using bwdif algorithm for video stream. |
| | 681 | | if (videoStream is not null && videoStream.IsInterlaced) |
| | 682 | | { |
| | 683 | | filters.Add("bwdif=0:-1:0"); |
| | 684 | | } |
| | 685 | |
|
| | 686 | | // apply some filters to thumbnail extracted below (below) crop any black lines that we made and get the cor |
| | 687 | | // This filter chain may have adverse effects on recorded tv thumbnails if ar changes during presentation ex |
| | 688 | | var scaler = threedFormat switch |
| | 689 | | { |
| | 690 | | // hsbs crop width in half,scale to correct size, set the display aspect,crop out any black bars we may |
| | 691 | | Video3DFormat.HalfSideBySide => @"crop=iw/2:ih:0:0,scale=(iw*2):ih,setdar=dar=a,crop=min(iw\,ih*dar):min |
| | 692 | | // fsbs crop width in half,set the display aspect,crop out any black bars we may have made |
| | 693 | | Video3DFormat.FullSideBySide => @"crop=iw/2:ih:0:0,setdar=dar=a,crop=min(iw\,ih*dar):min(ih\,iw/dar):(iw |
| | 694 | | // htab crop height in half,scale to correct size, set the display aspect,crop out any black bars we may |
| | 695 | | Video3DFormat.HalfTopAndBottom => @"crop=iw:ih/2:0:0,scale=(iw*2):ih),setdar=dar=a,crop=min(iw\,ih*dar): |
| | 696 | | // ftab crop height in half, set the display aspect,crop out any black bars we may have made |
| | 697 | | Video3DFormat.FullTopAndBottom => @"crop=iw:ih/2:0:0,setdar=dar=a,crop=min(iw\,ih*dar):min(ih\,iw/dar):( |
| | 698 | | _ => "scale=round(iw*sar/2)*2:round(ih/2)*2" |
| | 699 | | }; |
| | 700 | |
|
| | 701 | | filters.Add(scaler); |
| | 702 | |
|
| | 703 | | // Use ffmpeg to sample 100 (we can drop this if required using thumbnail=50 for 50 frames) frames and pick |
| | 704 | | // mpegts need larger batch size otherwise the corrupted thumbnail will be created. Larger batch size will l |
| | 705 | | var enableThumbnail = !useTradeoff && useIFrame && !string.Equals("wtv", container, StringComparison.Ordinal |
| | 706 | | if (enableThumbnail) |
| | 707 | | { |
| | 708 | | var useLargerBatchSize = string.Equals("mpegts", container, StringComparison.OrdinalIgnoreCase); |
| | 709 | | filters.Add("thumbnail=n=" + (useLargerBatchSize ? "50" : "24")); |
| | 710 | | } |
| | 711 | |
|
| | 712 | | // Use SW tonemap on HDR video stream only when the zscale or tonemapx filter is available. |
| | 713 | | // Only enable Dolby Vision tonemap when tonemapx is available |
| | 714 | | var enableHdrExtraction = false; |
| | 715 | |
|
| | 716 | | if (videoStream?.VideoRange == VideoRange.HDR) |
| | 717 | | { |
| | 718 | | if (SupportsFilter("tonemapx")) |
| | 719 | | { |
| | 720 | | var peak = videoStream.VideoRangeType == VideoRangeType.DOVI ? "400" : "100"; |
| | 721 | | enableHdrExtraction = true; |
| | 722 | | filters.Add($"tonemapx=tonemap=bt2390:desat=0:peak={peak}:t=bt709:m=bt709:p=bt709:format=yuv420p"); |
| | 723 | | } |
| | 724 | | else if (SupportsFilter("zscale") && videoStream.VideoRangeType != VideoRangeType.DOVI) |
| | 725 | | { |
| | 726 | | enableHdrExtraction = true; |
| | 727 | | filters.Add("zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0:p |
| | 728 | | } |
| | 729 | | } |
| | 730 | |
|
| | 731 | | var vf = string.Join(',', filters); |
| | 732 | | var mapArg = imageStreamIndex.HasValue ? (" -map 0:" + imageStreamIndex.Value.ToString(CultureInfo.Invariant |
| | 733 | | var args = string.Format(CultureInfo.InvariantCulture, "-i {0}{3} -threads {4} -v quiet -vframes 1 -vf {2}{5 |
| | 734 | |
|
| | 735 | | if (offset.HasValue) |
| | 736 | | { |
| | 737 | | args = string.Format(CultureInfo.InvariantCulture, "-ss {0} ", GetTimeParameter(offset.Value)) + args; |
| | 738 | | } |
| | 739 | |
|
| | 740 | | if (useIFrame && useTradeoff) |
| | 741 | | { |
| | 742 | | args = "-skip_frame nokey " + args; |
| | 743 | | } |
| | 744 | |
|
| | 745 | | if (!string.IsNullOrWhiteSpace(container)) |
| | 746 | | { |
| | 747 | | var inputFormat = EncodingHelper.GetInputFormat(container); |
| | 748 | | if (!string.IsNullOrWhiteSpace(inputFormat)) |
| | 749 | | { |
| | 750 | | args = "-f " + inputFormat + " " + args; |
| | 751 | | } |
| | 752 | | } |
| | 753 | |
|
| | 754 | | var process = new Process |
| | 755 | | { |
| | 756 | | StartInfo = new ProcessStartInfo |
| | 757 | | { |
| | 758 | | CreateNoWindow = true, |
| | 759 | | UseShellExecute = false, |
| | 760 | | FileName = _ffmpegPath, |
| | 761 | | Arguments = args, |
| | 762 | | WindowStyle = ProcessWindowStyle.Hidden, |
| | 763 | | ErrorDialog = false, |
| | 764 | | }, |
| | 765 | | EnableRaisingEvents = true |
| | 766 | | }; |
| | 767 | |
|
| | 768 | | _logger.LogDebug("{ProcessFileName} {ProcessArguments}", process.StartInfo.FileName, process.StartInfo.Argum |
| | 769 | |
|
| | 770 | | using (var processWrapper = new ProcessWrapper(process, this)) |
| | 771 | | { |
| | 772 | | using (await _thumbnailResourcePool.LockAsync(cancellationToken).ConfigureAwait(false)) |
| | 773 | | { |
| | 774 | | StartProcess(processWrapper); |
| | 775 | |
|
| | 776 | | var timeoutMs = _configurationManager.Configuration.ImageExtractionTimeoutMs; |
| | 777 | | if (timeoutMs <= 0) |
| | 778 | | { |
| | 779 | | timeoutMs = enableHdrExtraction ? DefaultHdrImageExtractionTimeout : DefaultSdrImageExtractionTi |
| | 780 | | } |
| | 781 | |
|
| | 782 | | try |
| | 783 | | { |
| | 784 | | await process.WaitForExitAsync(TimeSpan.FromMilliseconds(timeoutMs)).ConfigureAwait(false); |
| | 785 | | } |
| | 786 | | catch (OperationCanceledException ex) |
| | 787 | | { |
| | 788 | | process.Kill(true); |
| | 789 | | throw new FfmpegException(string.Format(CultureInfo.InvariantCulture, "ffmpeg image extraction t |
| | 790 | | } |
| | 791 | | } |
| | 792 | |
|
| | 793 | | var file = _fileSystem.GetFileInfo(tempExtractPath); |
| | 794 | |
|
| | 795 | | if (processWrapper.ExitCode > 0 || !file.Exists || file.Length == 0) |
| | 796 | | { |
| | 797 | | throw new FfmpegException(string.Format(CultureInfo.InvariantCulture, "ffmpeg image extraction faile |
| | 798 | | } |
| | 799 | |
|
| | 800 | | return tempExtractPath; |
| | 801 | | } |
| | 802 | | } |
| | 803 | |
|
| | 804 | | /// <inheritdoc /> |
| | 805 | | public Task<string> ExtractVideoImagesOnIntervalAccelerated( |
| | 806 | | string inputFile, |
| | 807 | | string container, |
| | 808 | | MediaSourceInfo mediaSource, |
| | 809 | | MediaStream imageStream, |
| | 810 | | int maxWidth, |
| | 811 | | TimeSpan interval, |
| | 812 | | bool allowHwAccel, |
| | 813 | | bool enableHwEncoding, |
| | 814 | | int? threads, |
| | 815 | | int? qualityScale, |
| | 816 | | ProcessPriorityClass? priority, |
| | 817 | | bool enableKeyFrameOnlyExtraction, |
| | 818 | | EncodingHelper encodingHelper, |
| | 819 | | CancellationToken cancellationToken) |
| | 820 | | { |
| 0 | 821 | | var options = allowHwAccel ? _configurationManager.GetEncodingOptions() : new EncodingOptions(); |
| 0 | 822 | | threads ??= _threads; |
| | 823 | |
|
| 0 | 824 | | if (allowHwAccel && enableKeyFrameOnlyExtraction) |
| | 825 | | { |
| 0 | 826 | | var hardwareAccelerationType = options.HardwareAccelerationType; |
| 0 | 827 | | var supportsKeyFrameOnly = (hardwareAccelerationType == HardwareAccelerationType.nvenc && options.Enable |
| 0 | 828 | | || (hardwareAccelerationType == HardwareAccelerationType.amf && OperatingSyst |
| 0 | 829 | | || (hardwareAccelerationType == HardwareAccelerationType.qsv && options.Prefe |
| 0 | 830 | | || hardwareAccelerationType == HardwareAccelerationType.vaapi |
| 0 | 831 | | || hardwareAccelerationType == HardwareAccelerationType.videotoolbox |
| 0 | 832 | | || hardwareAccelerationType == HardwareAccelerationType.rkmpp; |
| 0 | 833 | | if (!supportsKeyFrameOnly) |
| | 834 | | { |
| | 835 | | // Disable hardware acceleration when the hardware decoder does not support keyframe only mode. |
| 0 | 836 | | allowHwAccel = false; |
| 0 | 837 | | options = new EncodingOptions(); |
| | 838 | | } |
| | 839 | | } |
| | 840 | |
|
| | 841 | | // A new EncodingOptions instance must be used as to not disable HW acceleration for all of Jellyfin. |
| | 842 | | // Additionally, we must set a few fields without defaults to prevent null pointer exceptions. |
| 0 | 843 | | if (!allowHwAccel) |
| | 844 | | { |
| 0 | 845 | | options.EnableHardwareEncoding = false; |
| 0 | 846 | | options.HardwareAccelerationType = HardwareAccelerationType.none; |
| 0 | 847 | | options.EnableTonemapping = false; |
| | 848 | | } |
| | 849 | |
|
| 0 | 850 | | if (imageStream.Width is not null && imageStream.Height is not null && !string.IsNullOrEmpty(imageStream.Asp |
| | 851 | | { |
| | 852 | | // For hardware trickplay encoders, we need to re-calculate the size because they used fixed scale dimen |
| 0 | 853 | | var darParts = imageStream.AspectRatio.Split(':'); |
| 0 | 854 | | var (wa, ha) = (double.Parse(darParts[0], CultureInfo.InvariantCulture), double.Parse(darParts[1], Cultu |
| | 855 | | // When dimension / DAR does not equal to 1:1, then the frames are most likely stored stretched. |
| | 856 | | // Note: this might be incorrect for 3D videos as the SAR stored might be per eye instead of per video, |
| 0 | 857 | | var shouldResetHeight = Math.Abs((imageStream.Width.Value * ha) - (imageStream.Height.Value * wa)) > .05 |
| 0 | 858 | | if (shouldResetHeight) |
| | 859 | | { |
| | 860 | | // SAR = DAR * Height / Width |
| | 861 | | // RealHeight = Height / SAR = Height / (DAR * Height / Width) = Width / DAR |
| 0 | 862 | | imageStream.Height = Convert.ToInt32(imageStream.Width.Value * ha / wa); |
| | 863 | | } |
| | 864 | | } |
| | 865 | |
|
| 0 | 866 | | var baseRequest = new BaseEncodingJobOptions { MaxWidth = maxWidth, MaxFramerate = (float)(1.0 / interval.To |
| 0 | 867 | | var jobState = new EncodingJobInfo(TranscodingJobType.Progressive) |
| 0 | 868 | | { |
| 0 | 869 | | IsVideoRequest = true, // must be true for InputVideoHwaccelArgs to return non-empty value |
| 0 | 870 | | MediaSource = mediaSource, |
| 0 | 871 | | VideoStream = imageStream, |
| 0 | 872 | | BaseRequest = baseRequest, // GetVideoProcessingFilterParam errors if null |
| 0 | 873 | | MediaPath = inputFile, |
| 0 | 874 | | OutputVideoCodec = "mjpeg" |
| 0 | 875 | | }; |
| 0 | 876 | | var vidEncoder = enableHwEncoding ? encodingHelper.GetVideoEncoder(jobState, options) : jobState.OutputVideo |
| | 877 | |
|
| | 878 | | // Get input and filter arguments |
| 0 | 879 | | var inputArg = encodingHelper.GetInputArgument(jobState, options, container).Trim(); |
| 0 | 880 | | if (string.IsNullOrWhiteSpace(inputArg)) |
| | 881 | | { |
| 0 | 882 | | throw new InvalidOperationException("EncodingHelper returned empty input arguments."); |
| | 883 | | } |
| | 884 | |
|
| 0 | 885 | | if (!allowHwAccel) |
| | 886 | | { |
| 0 | 887 | | inputArg = "-threads " + threads + " " + inputArg; // HW accel args set a different input thread count, |
| | 888 | | } |
| | 889 | |
|
| 0 | 890 | | if (options.HardwareAccelerationType == HardwareAccelerationType.videotoolbox && _isLowPriorityHwDecodeSuppo |
| | 891 | | { |
| | 892 | | // VideoToolbox supports low priority decoding, which is useful for trickplay |
| 0 | 893 | | inputArg = "-hwaccel_flags +low_priority " + inputArg; |
| | 894 | | } |
| | 895 | |
|
| 0 | 896 | | if (enableKeyFrameOnlyExtraction) |
| | 897 | | { |
| 0 | 898 | | inputArg = "-skip_frame nokey " + inputArg; |
| | 899 | | } |
| | 900 | |
|
| 0 | 901 | | var filterParam = encodingHelper.GetVideoProcessingFilterParam(jobState, options, vidEncoder).Trim(); |
| 0 | 902 | | if (string.IsNullOrWhiteSpace(filterParam)) |
| | 903 | | { |
| 0 | 904 | | throw new InvalidOperationException("EncodingHelper returned empty or invalid filter parameters."); |
| | 905 | | } |
| | 906 | |
|
| 0 | 907 | | return ExtractVideoImagesOnIntervalInternal(inputArg, filterParam, vidEncoder, threads, qualityScale, priori |
| | 908 | | } |
| | 909 | |
|
| | 910 | | private async Task<string> ExtractVideoImagesOnIntervalInternal( |
| | 911 | | string inputArg, |
| | 912 | | string filterParam, |
| | 913 | | string vidEncoder, |
| | 914 | | int? outputThreads, |
| | 915 | | int? qualityScale, |
| | 916 | | ProcessPriorityClass? priority, |
| | 917 | | CancellationToken cancellationToken) |
| | 918 | | { |
| | 919 | | if (string.IsNullOrWhiteSpace(inputArg)) |
| | 920 | | { |
| | 921 | | throw new InvalidOperationException("Empty or invalid input argument."); |
| | 922 | | } |
| | 923 | |
|
| | 924 | | // ffmpeg qscale is a value from 1-31, with 1 being best quality and 31 being worst |
| | 925 | | // jpeg quality is a value from 0-100, with 0 being worst quality and 100 being best |
| | 926 | | var encoderQuality = Math.Clamp(qualityScale ?? 4, 1, 31); |
| | 927 | | var encoderQualityOption = "-qscale:v "; |
| | 928 | |
|
| | 929 | | if (vidEncoder.Contains("vaapi", StringComparison.OrdinalIgnoreCase) |
| | 930 | | || vidEncoder.Contains("qsv", StringComparison.OrdinalIgnoreCase)) |
| | 931 | | { |
| | 932 | | // vaapi and qsv's mjpeg encoder use jpeg quality as input, instead of ffmpeg defined qscale |
| | 933 | | encoderQuality = 100 - ((encoderQuality - 1) * (100 / 30)); |
| | 934 | | encoderQualityOption = "-global_quality:v "; |
| | 935 | | } |
| | 936 | |
|
| | 937 | | if (vidEncoder.Contains("videotoolbox", StringComparison.OrdinalIgnoreCase)) |
| | 938 | | { |
| | 939 | | // videotoolbox's mjpeg encoder uses jpeg quality scaled to QP2LAMBDA (118) instead of ffmpeg defined qs |
| | 940 | | encoderQuality = 118 - ((encoderQuality - 1) * (118 / 30)); |
| | 941 | | } |
| | 942 | |
|
| | 943 | | if (vidEncoder.Contains("rkmpp", StringComparison.OrdinalIgnoreCase)) |
| | 944 | | { |
| | 945 | | // rkmpp's mjpeg encoder uses jpeg quality as input (max is 99, not 100), instead of ffmpeg defined qsca |
| | 946 | | encoderQuality = 99 - ((encoderQuality - 1) * (99 / 30)); |
| | 947 | | encoderQualityOption = "-qp_init:v "; |
| | 948 | | } |
| | 949 | |
|
| | 950 | | // Output arguments |
| | 951 | | var targetDirectory = Path.Combine(_configurationManager.ApplicationPaths.TempDirectory, Guid.NewGuid().ToSt |
| | 952 | | Directory.CreateDirectory(targetDirectory); |
| | 953 | | var outputPath = Path.Combine(targetDirectory, "%08d.jpg"); |
| | 954 | |
|
| | 955 | | // Final command arguments |
| | 956 | | var args = string.Format( |
| | 957 | | CultureInfo.InvariantCulture, |
| | 958 | | "-loglevel error {0} -an -sn {1} -threads {2} -c:v {3} {4}{5}{6}-f {7} \"{8}\"", |
| | 959 | | inputArg, |
| | 960 | | filterParam, |
| | 961 | | outputThreads.GetValueOrDefault(_threads), |
| | 962 | | vidEncoder, |
| | 963 | | encoderQualityOption + encoderQuality + " ", |
| | 964 | | vidEncoder.Contains("videotoolbox", StringComparison.InvariantCultureIgnoreCase) ? "-allow_sw 1 " : stri |
| | 965 | | EncodingHelper.GetVideoSyncOption("0", EncoderVersion).Trim() + " ", // passthrough timestamp |
| | 966 | | "image2", |
| | 967 | | outputPath); |
| | 968 | |
|
| | 969 | | // Start ffmpeg process |
| | 970 | | var process = new Process |
| | 971 | | { |
| | 972 | | StartInfo = new ProcessStartInfo |
| | 973 | | { |
| | 974 | | CreateNoWindow = true, |
| | 975 | | UseShellExecute = false, |
| | 976 | | FileName = _ffmpegPath, |
| | 977 | | Arguments = args, |
| | 978 | | WindowStyle = ProcessWindowStyle.Hidden, |
| | 979 | | ErrorDialog = false, |
| | 980 | | }, |
| | 981 | | EnableRaisingEvents = true |
| | 982 | | }; |
| | 983 | |
|
| | 984 | | var processDescription = string.Format(CultureInfo.InvariantCulture, "{0} {1}", process.StartInfo.FileName, |
| | 985 | | _logger.LogInformation("Trickplay generation: {ProcessDescription}", processDescription); |
| | 986 | |
|
| | 987 | | using (var processWrapper = new ProcessWrapper(process, this)) |
| | 988 | | { |
| | 989 | | bool ranToCompletion = false; |
| | 990 | |
|
| | 991 | | using (await _thumbnailResourcePool.LockAsync(cancellationToken).ConfigureAwait(false)) |
| | 992 | | { |
| | 993 | | StartProcess(processWrapper); |
| | 994 | |
|
| | 995 | | // Set process priority |
| | 996 | | if (priority.HasValue) |
| | 997 | | { |
| | 998 | | try |
| | 999 | | { |
| | 1000 | | processWrapper.Process.PriorityClass = priority.Value; |
| | 1001 | | } |
| | 1002 | | catch (Exception ex) |
| | 1003 | | { |
| | 1004 | | _logger.LogDebug(ex, "Unable to set process priority to {Priority} for {Description}", prior |
| | 1005 | | } |
| | 1006 | | } |
| | 1007 | |
|
| | 1008 | | // Need to give ffmpeg enough time to make all the thumbnails, which could be a while, |
| | 1009 | | // but we still need to detect if the process hangs. |
| | 1010 | | // Making the assumption that as long as new jpegs are showing up, everything is good. |
| | 1011 | |
|
| | 1012 | | bool isResponsive = true; |
| | 1013 | | int lastCount = 0; |
| | 1014 | | var timeoutMs = _configurationManager.Configuration.ImageExtractionTimeoutMs; |
| | 1015 | | timeoutMs = timeoutMs <= 0 ? DefaultHdrImageExtractionTimeout : timeoutMs; |
| | 1016 | |
|
| | 1017 | | while (isResponsive && !cancellationToken.IsCancellationRequested) |
| | 1018 | | { |
| | 1019 | | try |
| | 1020 | | { |
| | 1021 | | await process.WaitForExitAsync(TimeSpan.FromMilliseconds(timeoutMs)).ConfigureAwait(false); |
| | 1022 | |
|
| | 1023 | | ranToCompletion = true; |
| | 1024 | | break; |
| | 1025 | | } |
| | 1026 | | catch (OperationCanceledException) |
| | 1027 | | { |
| | 1028 | | // We don't actually expect the process to be finished in one timeout span, just that one im |
| | 1029 | | } |
| | 1030 | |
|
| | 1031 | | var jpegCount = _fileSystem.GetFilePaths(targetDirectory).Count(); |
| | 1032 | |
|
| | 1033 | | isResponsive = jpegCount > lastCount; |
| | 1034 | | lastCount = jpegCount; |
| | 1035 | | } |
| | 1036 | |
|
| | 1037 | | if (!ranToCompletion) |
| | 1038 | | { |
| | 1039 | | if (!isResponsive) |
| | 1040 | | { |
| | 1041 | | _logger.LogInformation("Trickplay process unresponsive."); |
| | 1042 | | } |
| | 1043 | |
|
| | 1044 | | _logger.LogInformation("Stopping trickplay extraction."); |
| | 1045 | | StopProcess(processWrapper, 1000); |
| | 1046 | | } |
| | 1047 | | } |
| | 1048 | |
|
| | 1049 | | var exitCode = ranToCompletion ? processWrapper.ExitCode ?? 0 : -1; |
| | 1050 | |
|
| | 1051 | | if (exitCode == -1) |
| | 1052 | | { |
| | 1053 | | _logger.LogError("ffmpeg image extraction failed for {ProcessDescription}", processDescription); |
| | 1054 | | // Cleanup temp folder here, because the targetDirectory is not returned and the cleanup for failed |
| | 1055 | | // Ideally the ffmpeg should not write any files if it fails, but it seems like it is not guaranteed |
| | 1056 | | try |
| | 1057 | | { |
| | 1058 | | Directory.Delete(targetDirectory, true); |
| | 1059 | | } |
| | 1060 | | catch (Exception e) |
| | 1061 | | { |
| | 1062 | | _logger.LogError(e, "Failed to delete ffmpeg temp directory {TargetDirectory}", targetDirectory) |
| | 1063 | | } |
| | 1064 | |
|
| | 1065 | | throw new FfmpegException(string.Format(CultureInfo.InvariantCulture, "ffmpeg image extraction faile |
| | 1066 | | } |
| | 1067 | |
|
| | 1068 | | return targetDirectory; |
| | 1069 | | } |
| | 1070 | | } |
| | 1071 | |
|
| | 1072 | | public string GetTimeParameter(long ticks) |
| | 1073 | | { |
| 0 | 1074 | | var time = TimeSpan.FromTicks(ticks); |
| | 1075 | |
|
| 0 | 1076 | | return GetTimeParameter(time); |
| | 1077 | | } |
| | 1078 | |
|
| | 1079 | | public string GetTimeParameter(TimeSpan time) |
| | 1080 | | { |
| 0 | 1081 | | return time.ToString(@"hh\:mm\:ss\.fff", CultureInfo.InvariantCulture); |
| | 1082 | | } |
| | 1083 | |
|
| | 1084 | | private void StartProcess(ProcessWrapper process) |
| | 1085 | | { |
| 0 | 1086 | | process.Process.Start(); |
| | 1087 | |
|
| | 1088 | | lock (_runningProcessesLock) |
| | 1089 | | { |
| 0 | 1090 | | _runningProcesses.Add(process); |
| 0 | 1091 | | } |
| 0 | 1092 | | } |
| | 1093 | |
|
| | 1094 | | private void StopProcess(ProcessWrapper process, int waitTimeMs) |
| | 1095 | | { |
| | 1096 | | try |
| | 1097 | | { |
| 0 | 1098 | | if (process.Process.WaitForExit(waitTimeMs)) |
| | 1099 | | { |
| 0 | 1100 | | return; |
| | 1101 | | } |
| | 1102 | |
|
| 0 | 1103 | | _logger.LogInformation("Killing ffmpeg process"); |
| | 1104 | |
|
| 0 | 1105 | | process.Process.Kill(); |
| 0 | 1106 | | } |
| 0 | 1107 | | catch (InvalidOperationException) |
| | 1108 | | { |
| | 1109 | | // The process has already exited or |
| | 1110 | | // there is no process associated with this Process object. |
| 0 | 1111 | | } |
| 0 | 1112 | | catch (Exception ex) |
| | 1113 | | { |
| 0 | 1114 | | _logger.LogError(ex, "Error killing process"); |
| 0 | 1115 | | } |
| 0 | 1116 | | } |
| | 1117 | |
|
| | 1118 | | private void StopProcesses() |
| 21 | 1119 | | { |
| | 1120 | | List<ProcessWrapper> processes; |
| | 1121 | | lock (_runningProcessesLock) |
| | 1122 | | { |
| 21 | 1123 | | processes = _runningProcesses.ToList(); |
| 21 | 1124 | | _runningProcesses.Clear(); |
| 21 | 1125 | | } |
| | 1126 | |
|
| 42 | 1127 | | foreach (var process in processes) |
| | 1128 | | { |
| 0 | 1129 | | if (!process.HasExited) |
| | 1130 | | { |
| 0 | 1131 | | StopProcess(process, 500); |
| | 1132 | | } |
| | 1133 | | } |
| 21 | 1134 | | } |
| | 1135 | |
|
| | 1136 | | public string EscapeSubtitleFilterPath(string path) |
| | 1137 | | { |
| | 1138 | | // https://ffmpeg.org/ffmpeg-filters.html#Notes-on-filtergraph-escaping |
| | 1139 | | // We need to double escape |
| | 1140 | |
|
| 0 | 1141 | | return path |
| 0 | 1142 | | .Replace('\\', '/') |
| 0 | 1143 | | .Replace(":", "\\:", StringComparison.Ordinal) |
| 0 | 1144 | | .Replace("'", @"'\\\''", StringComparison.Ordinal) |
| 0 | 1145 | | .Replace("\"", "\\\"", StringComparison.Ordinal); |
| | 1146 | | } |
| | 1147 | |
|
| | 1148 | | /// <inheritdoc /> |
| | 1149 | | public void Dispose() |
| | 1150 | | { |
| 21 | 1151 | | Dispose(true); |
| 21 | 1152 | | GC.SuppressFinalize(this); |
| 21 | 1153 | | } |
| | 1154 | |
|
| | 1155 | | /// <summary> |
| | 1156 | | /// Releases unmanaged and - optionally - managed resources. |
| | 1157 | | /// </summary> |
| | 1158 | | /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release o |
| | 1159 | | protected virtual void Dispose(bool dispose) |
| | 1160 | | { |
| 21 | 1161 | | if (dispose) |
| | 1162 | | { |
| 21 | 1163 | | StopProcesses(); |
| 21 | 1164 | | _thumbnailResourcePool.Dispose(); |
| | 1165 | | } |
| 21 | 1166 | | } |
| | 1167 | |
|
| | 1168 | | /// <inheritdoc /> |
| | 1169 | | public Task ConvertImage(string inputPath, string outputPath) |
| | 1170 | | { |
| 0 | 1171 | | throw new NotImplementedException(); |
| | 1172 | | } |
| | 1173 | |
|
| | 1174 | | /// <inheritdoc /> |
| | 1175 | | public IReadOnlyList<string> GetPrimaryPlaylistVobFiles(string path, uint? titleNumber) |
| | 1176 | | { |
| | 1177 | | // Eliminate menus and intros by omitting VIDEO_TS.VOB and all subsequent title .vob files ending with _0.VO |
| 0 | 1178 | | var allVobs = _fileSystem.GetFiles(path, true) |
| 0 | 1179 | | .Where(file => string.Equals(file.Extension, ".VOB", StringComparison.OrdinalIgnoreCase)) |
| 0 | 1180 | | .Where(file => !string.Equals(file.Name, "VIDEO_TS.VOB", StringComparison.OrdinalIgnoreCase)) |
| 0 | 1181 | | .Where(file => !file.Name.EndsWith("_0.VOB", StringComparison.OrdinalIgnoreCase)) |
| 0 | 1182 | | .OrderBy(i => i.FullName) |
| 0 | 1183 | | .ToList(); |
| | 1184 | |
|
| 0 | 1185 | | if (titleNumber.HasValue) |
| | 1186 | | { |
| 0 | 1187 | | var prefix = string.Format(CultureInfo.InvariantCulture, "VTS_{0:D2}_", titleNumber.Value); |
| 0 | 1188 | | var vobs = allVobs.Where(i => i.Name.StartsWith(prefix, StringComparison.OrdinalIgnoreCase)).ToList(); |
| | 1189 | |
|
| 0 | 1190 | | if (vobs.Count > 0) |
| | 1191 | | { |
| 0 | 1192 | | return vobs.Select(i => i.FullName).ToList(); |
| | 1193 | | } |
| | 1194 | |
|
| 0 | 1195 | | _logger.LogWarning("Could not determine .vob files for title {Title} of {Path}.", titleNumber, path); |
| | 1196 | | } |
| | 1197 | |
|
| | 1198 | | // Check for multiple big titles (> 900 MB) |
| 0 | 1199 | | var titles = allVobs |
| 0 | 1200 | | .Where(vob => vob.Length >= 900 * 1024 * 1024) |
| 0 | 1201 | | .Select(vob => _fileSystem.GetFileNameWithoutExtension(vob).AsSpan().RightPart('_').ToString()) |
| 0 | 1202 | | .Distinct() |
| 0 | 1203 | | .ToList(); |
| | 1204 | |
|
| | 1205 | | // Fall back to first title if no big title is found |
| 0 | 1206 | | if (titles.Count == 0) |
| | 1207 | | { |
| 0 | 1208 | | titles.Add(_fileSystem.GetFileNameWithoutExtension(allVobs[0]).AsSpan().RightPart('_').ToString()); |
| | 1209 | | } |
| | 1210 | |
|
| | 1211 | | // Aggregate all .vob files of the titles |
| 0 | 1212 | | return allVobs |
| 0 | 1213 | | .Where(vob => titles.Contains(_fileSystem.GetFileNameWithoutExtension(vob).AsSpan().RightPart('_').ToStr |
| 0 | 1214 | | .Select(i => i.FullName) |
| 0 | 1215 | | .Order() |
| 0 | 1216 | | .ToList(); |
| | 1217 | | } |
| | 1218 | |
|
| | 1219 | | /// <inheritdoc /> |
| | 1220 | | public IReadOnlyList<string> GetPrimaryPlaylistM2tsFiles(string path) |
| 0 | 1221 | | => _blurayExaminer.GetDiscInfo(path).Files; |
| | 1222 | |
|
| | 1223 | | /// <inheritdoc /> |
| | 1224 | | public string GetInputPathArgument(EncodingJobInfo state) |
| 0 | 1225 | | => GetInputPathArgument(state.MediaPath, state.MediaSource); |
| | 1226 | |
|
| | 1227 | | /// <inheritdoc /> |
| | 1228 | | public string GetInputPathArgument(string path, MediaSourceInfo mediaSource) |
| | 1229 | | { |
| 0 | 1230 | | return mediaSource.VideoType switch |
| 0 | 1231 | | { |
| 0 | 1232 | | VideoType.Dvd => GetInputArgument(GetPrimaryPlaylistVobFiles(path, null), mediaSource), |
| 0 | 1233 | | VideoType.BluRay => GetInputArgument(GetPrimaryPlaylistM2tsFiles(path), mediaSource), |
| 0 | 1234 | | _ => GetInputArgument(path, mediaSource) |
| 0 | 1235 | | }; |
| | 1236 | | } |
| | 1237 | |
|
| | 1238 | | /// <inheritdoc /> |
| | 1239 | | public void GenerateConcatConfig(MediaSourceInfo source, string concatFilePath) |
| | 1240 | | { |
| | 1241 | | // Get all playable files |
| | 1242 | | IReadOnlyList<string> files; |
| 0 | 1243 | | var videoType = source.VideoType; |
| 0 | 1244 | | if (videoType == VideoType.Dvd) |
| | 1245 | | { |
| 0 | 1246 | | files = GetPrimaryPlaylistVobFiles(source.Path, null); |
| | 1247 | | } |
| 0 | 1248 | | else if (videoType == VideoType.BluRay) |
| | 1249 | | { |
| 0 | 1250 | | files = GetPrimaryPlaylistM2tsFiles(source.Path); |
| | 1251 | | } |
| | 1252 | | else |
| | 1253 | | { |
| 0 | 1254 | | return; |
| | 1255 | | } |
| | 1256 | |
|
| | 1257 | | // Generate concat configuration entries for each file and write to file |
| 0 | 1258 | | Directory.CreateDirectory(Path.GetDirectoryName(concatFilePath)); |
| 0 | 1259 | | using var sw = new FormattingStreamWriter(concatFilePath, CultureInfo.InvariantCulture); |
| 0 | 1260 | | foreach (var path in files) |
| | 1261 | | { |
| 0 | 1262 | | var mediaInfoResult = GetMediaInfo( |
| 0 | 1263 | | new MediaInfoRequest |
| 0 | 1264 | | { |
| 0 | 1265 | | MediaType = DlnaProfileType.Video, |
| 0 | 1266 | | MediaSource = new MediaSourceInfo |
| 0 | 1267 | | { |
| 0 | 1268 | | Path = path, |
| 0 | 1269 | | Protocol = MediaProtocol.File, |
| 0 | 1270 | | VideoType = videoType |
| 0 | 1271 | | } |
| 0 | 1272 | | }, |
| 0 | 1273 | | CancellationToken.None).GetAwaiter().GetResult(); |
| | 1274 | |
|
| 0 | 1275 | | var duration = TimeSpan.FromTicks(mediaInfoResult.RunTimeTicks.Value).TotalSeconds; |
| | 1276 | |
|
| | 1277 | | // Add file path stanza to concat configuration |
| 0 | 1278 | | sw.WriteLine("file '{0}'", path.Replace("'", @"'\''", StringComparison.Ordinal)); |
| | 1279 | |
|
| | 1280 | | // Add duration stanza to concat configuration |
| 0 | 1281 | | sw.WriteLine("duration {0}", duration); |
| | 1282 | | } |
| 0 | 1283 | | } |
| | 1284 | |
|
| | 1285 | | public bool CanExtractSubtitles(string codec) |
| | 1286 | | { |
| | 1287 | | // TODO is there ever a case when a subtitle can't be extracted?? |
| 0 | 1288 | | return true; |
| | 1289 | | } |
| | 1290 | |
|
| | 1291 | | private sealed class ProcessWrapper : IDisposable |
| | 1292 | | { |
| | 1293 | | private readonly MediaEncoder _mediaEncoder; |
| | 1294 | |
|
| | 1295 | | private bool _disposed = false; |
| | 1296 | |
|
| | 1297 | | public ProcessWrapper(Process process, MediaEncoder mediaEncoder) |
| | 1298 | | { |
| | 1299 | | Process = process; |
| 0 | 1300 | | _mediaEncoder = mediaEncoder; |
| 0 | 1301 | | Process.Exited += OnProcessExited; |
| 0 | 1302 | | } |
| | 1303 | |
|
| | 1304 | | public Process Process { get; } |
| | 1305 | |
|
| | 1306 | | public bool HasExited { get; private set; } |
| | 1307 | |
|
| | 1308 | | public int? ExitCode { get; private set; } |
| | 1309 | |
|
| | 1310 | | private void OnProcessExited(object sender, EventArgs e) |
| | 1311 | | { |
| 0 | 1312 | | var process = (Process)sender; |
| | 1313 | |
|
| 0 | 1314 | | HasExited = true; |
| | 1315 | |
|
| | 1316 | | try |
| | 1317 | | { |
| 0 | 1318 | | ExitCode = process.ExitCode; |
| 0 | 1319 | | } |
| 0 | 1320 | | catch |
| | 1321 | | { |
| 0 | 1322 | | } |
| | 1323 | |
|
| 0 | 1324 | | DisposeProcess(process); |
| 0 | 1325 | | } |
| | 1326 | |
|
| | 1327 | | private void DisposeProcess(Process process) |
| 0 | 1328 | | { |
| | 1329 | | lock (_mediaEncoder._runningProcessesLock) |
| | 1330 | | { |
| 0 | 1331 | | _mediaEncoder._runningProcesses.Remove(this); |
| 0 | 1332 | | } |
| | 1333 | |
|
| 0 | 1334 | | process.Dispose(); |
| 0 | 1335 | | } |
| | 1336 | |
|
| | 1337 | | public void Dispose() |
| | 1338 | | { |
| 0 | 1339 | | if (!_disposed) |
| | 1340 | | { |
| 0 | 1341 | | if (Process is not null) |
| | 1342 | | { |
| 0 | 1343 | | Process.Exited -= OnProcessExited; |
| 0 | 1344 | | DisposeProcess(Process); |
| | 1345 | | } |
| | 1346 | | } |
| | 1347 | |
|
| 0 | 1348 | | _disposed = true; |
| 0 | 1349 | | } |
| | 1350 | | } |
| | 1351 | | } |
| | 1352 | | } |