| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Diagnostics; |
| | 6 | | using System.Globalization; |
| | 7 | | using System.Linq; |
| | 8 | | using System.Runtime.Versioning; |
| | 9 | | using System.Text.RegularExpressions; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.MediaEncoding.Encoder |
| | 13 | | { |
| | 14 | | public partial class EncoderValidator |
| | 15 | | { |
| 1 | 16 | | private static readonly string[] _requiredDecoders = new[] |
| 1 | 17 | | { |
| 1 | 18 | | "h264", |
| 1 | 19 | | "hevc", |
| 1 | 20 | | "vp8", |
| 1 | 21 | | "libvpx", |
| 1 | 22 | | "vp9", |
| 1 | 23 | | "libvpx-vp9", |
| 1 | 24 | | "av1", |
| 1 | 25 | | "libdav1d", |
| 1 | 26 | | "mpeg2video", |
| 1 | 27 | | "mpeg4", |
| 1 | 28 | | "msmpeg4", |
| 1 | 29 | | "dca", |
| 1 | 30 | | "ac3", |
| 1 | 31 | | "ac4", |
| 1 | 32 | | "aac", |
| 1 | 33 | | "mp3", |
| 1 | 34 | | "flac", |
| 1 | 35 | | "truehd", |
| 1 | 36 | | "h264_qsv", |
| 1 | 37 | | "hevc_qsv", |
| 1 | 38 | | "mpeg2_qsv", |
| 1 | 39 | | "vc1_qsv", |
| 1 | 40 | | "vp8_qsv", |
| 1 | 41 | | "vp9_qsv", |
| 1 | 42 | | "av1_qsv", |
| 1 | 43 | | "h264_cuvid", |
| 1 | 44 | | "hevc_cuvid", |
| 1 | 45 | | "mpeg2_cuvid", |
| 1 | 46 | | "vc1_cuvid", |
| 1 | 47 | | "mpeg4_cuvid", |
| 1 | 48 | | "vp8_cuvid", |
| 1 | 49 | | "vp9_cuvid", |
| 1 | 50 | | "av1_cuvid", |
| 1 | 51 | | "h264_rkmpp", |
| 1 | 52 | | "hevc_rkmpp", |
| 1 | 53 | | "mpeg1_rkmpp", |
| 1 | 54 | | "mpeg2_rkmpp", |
| 1 | 55 | | "mpeg4_rkmpp", |
| 1 | 56 | | "vp8_rkmpp", |
| 1 | 57 | | "vp9_rkmpp", |
| 1 | 58 | | "av1_rkmpp" |
| 1 | 59 | | }; |
| | 60 | |
|
| 1 | 61 | | private static readonly string[] _requiredEncoders = new[] |
| 1 | 62 | | { |
| 1 | 63 | | "libx264", |
| 1 | 64 | | "libx265", |
| 1 | 65 | | "libsvtav1", |
| 1 | 66 | | "aac", |
| 1 | 67 | | "aac_at", |
| 1 | 68 | | "libfdk_aac", |
| 1 | 69 | | "ac3", |
| 1 | 70 | | "alac", |
| 1 | 71 | | "dca", |
| 1 | 72 | | "libmp3lame", |
| 1 | 73 | | "libopus", |
| 1 | 74 | | "libvorbis", |
| 1 | 75 | | "flac", |
| 1 | 76 | | "truehd", |
| 1 | 77 | | "srt", |
| 1 | 78 | | "h264_amf", |
| 1 | 79 | | "hevc_amf", |
| 1 | 80 | | "av1_amf", |
| 1 | 81 | | "h264_qsv", |
| 1 | 82 | | "hevc_qsv", |
| 1 | 83 | | "mjpeg_qsv", |
| 1 | 84 | | "av1_qsv", |
| 1 | 85 | | "h264_nvenc", |
| 1 | 86 | | "hevc_nvenc", |
| 1 | 87 | | "av1_nvenc", |
| 1 | 88 | | "h264_vaapi", |
| 1 | 89 | | "hevc_vaapi", |
| 1 | 90 | | "av1_vaapi", |
| 1 | 91 | | "mjpeg_vaapi", |
| 1 | 92 | | "h264_v4l2m2m", |
| 1 | 93 | | "h264_videotoolbox", |
| 1 | 94 | | "hevc_videotoolbox", |
| 1 | 95 | | "mjpeg_videotoolbox", |
| 1 | 96 | | "h264_rkmpp", |
| 1 | 97 | | "hevc_rkmpp", |
| 1 | 98 | | "mjpeg_rkmpp" |
| 1 | 99 | | }; |
| | 100 | |
|
| 1 | 101 | | private static readonly string[] _requiredFilters = new[] |
| 1 | 102 | | { |
| 1 | 103 | | // sw |
| 1 | 104 | | "alphasrc", |
| 1 | 105 | | "zscale", |
| 1 | 106 | | "tonemapx", |
| 1 | 107 | | // qsv |
| 1 | 108 | | "scale_qsv", |
| 1 | 109 | | "vpp_qsv", |
| 1 | 110 | | "deinterlace_qsv", |
| 1 | 111 | | "overlay_qsv", |
| 1 | 112 | | // cuda |
| 1 | 113 | | "scale_cuda", |
| 1 | 114 | | "yadif_cuda", |
| 1 | 115 | | "bwdif_cuda", |
| 1 | 116 | | "tonemap_cuda", |
| 1 | 117 | | "overlay_cuda", |
| 1 | 118 | | "transpose_cuda", |
| 1 | 119 | | "hwupload_cuda", |
| 1 | 120 | | // opencl |
| 1 | 121 | | "scale_opencl", |
| 1 | 122 | | "tonemap_opencl", |
| 1 | 123 | | "overlay_opencl", |
| 1 | 124 | | "transpose_opencl", |
| 1 | 125 | | // vaapi |
| 1 | 126 | | "scale_vaapi", |
| 1 | 127 | | "deinterlace_vaapi", |
| 1 | 128 | | "tonemap_vaapi", |
| 1 | 129 | | "procamp_vaapi", |
| 1 | 130 | | "overlay_vaapi", |
| 1 | 131 | | "transpose_vaapi", |
| 1 | 132 | | "hwupload_vaapi", |
| 1 | 133 | | // vulkan |
| 1 | 134 | | "libplacebo", |
| 1 | 135 | | "scale_vulkan", |
| 1 | 136 | | "overlay_vulkan", |
| 1 | 137 | | "transpose_vulkan", |
| 1 | 138 | | "flip_vulkan", |
| 1 | 139 | | // videotoolbox |
| 1 | 140 | | "yadif_videotoolbox", |
| 1 | 141 | | "bwdif_videotoolbox", |
| 1 | 142 | | "scale_vt", |
| 1 | 143 | | "transpose_vt", |
| 1 | 144 | | "overlay_videotoolbox", |
| 1 | 145 | | "tonemap_videotoolbox", |
| 1 | 146 | | // rkrga |
| 1 | 147 | | "scale_rkrga", |
| 1 | 148 | | "vpp_rkrga", |
| 1 | 149 | | "overlay_rkrga" |
| 1 | 150 | | }; |
| | 151 | |
|
| 1 | 152 | | private static readonly Dictionary<int, string[]> _filterOptionsDict = new Dictionary<int, string[]> |
| 1 | 153 | | { |
| 1 | 154 | | { 0, new string[] { "scale_cuda", "format" } }, |
| 1 | 155 | | { 1, new string[] { "tonemap_cuda", "GPU accelerated HDR to SDR tonemapping" } }, |
| 1 | 156 | | { 2, new string[] { "tonemap_opencl", "bt2390" } }, |
| 1 | 157 | | { 3, new string[] { "overlay_opencl", "Action to take when encountering EOF from secondary input" } }, |
| 1 | 158 | | { 4, new string[] { "overlay_vaapi", "Action to take when encountering EOF from secondary input" } }, |
| 1 | 159 | | { 5, new string[] { "overlay_vulkan", "Action to take when encountering EOF from secondary input" } }, |
| 1 | 160 | | { 6, new string[] { "transpose_opencl", "rotate by half-turn" } } |
| 1 | 161 | | }; |
| | 162 | |
|
| | 163 | | // These are the library versions that corresponds to our minimum ffmpeg version 4.4 according to the version ta |
| | 164 | | // Refers to the versions in https://ffmpeg.org/download.html |
| 1 | 165 | | private static readonly Dictionary<string, Version> _ffmpegMinimumLibraryVersions = new Dictionary<string, Versi |
| 1 | 166 | | { |
| 1 | 167 | | { "libavutil", new Version(56, 70) }, |
| 1 | 168 | | { "libavcodec", new Version(58, 134) }, |
| 1 | 169 | | { "libavformat", new Version(58, 76) }, |
| 1 | 170 | | { "libavdevice", new Version(58, 13) }, |
| 1 | 171 | | { "libavfilter", new Version(7, 110) }, |
| 1 | 172 | | { "libswscale", new Version(5, 9) }, |
| 1 | 173 | | { "libswresample", new Version(3, 9) }, |
| 1 | 174 | | { "libpostproc", new Version(55, 9) } |
| 1 | 175 | | }; |
| | 176 | |
|
| | 177 | | private readonly ILogger _logger; |
| | 178 | |
|
| | 179 | | private readonly string _encoderPath; |
| | 180 | |
|
| 16 | 181 | | private readonly Version _minFFmpegMultiThreadedCli = new Version(7, 0); |
| | 182 | |
|
| | 183 | | public EncoderValidator(ILogger logger, string encoderPath) |
| | 184 | | { |
| 16 | 185 | | _logger = logger; |
| 16 | 186 | | _encoderPath = encoderPath; |
| 16 | 187 | | } |
| | 188 | |
|
| | 189 | | private enum Codec |
| | 190 | | { |
| | 191 | | Encoder, |
| | 192 | | Decoder |
| | 193 | | } |
| | 194 | |
|
| | 195 | | // When changing this, also change the minimum library versions in _ffmpegMinimumLibraryVersions |
| 1 | 196 | | public static Version MinVersion { get; } = new Version(4, 4); |
| | 197 | |
|
| 1 | 198 | | public static Version? MaxVersion { get; } = null; |
| | 199 | |
|
| | 200 | | [GeneratedRegex(@"^ffmpeg version n?((?:[0-9]+\.?)+)")] |
| | 201 | | private static partial Regex FfmpegVersionRegex(); |
| | 202 | |
|
| | 203 | | [GeneratedRegex(@"((?<name>lib\w+)\s+(?<major>[0-9]+)\.\s*(?<minor>[0-9]+))", RegexOptions.Multiline)] |
| | 204 | | private static partial Regex LibraryRegex(); |
| | 205 | |
|
| | 206 | | public bool ValidateVersion() |
| | 207 | | { |
| | 208 | | string output; |
| | 209 | | try |
| | 210 | | { |
| 0 | 211 | | output = GetProcessOutput(_encoderPath, "-version", false, null); |
| 0 | 212 | | } |
| 0 | 213 | | catch (Exception ex) |
| | 214 | | { |
| 0 | 215 | | _logger.LogError(ex, "Error validating encoder"); |
| 0 | 216 | | return false; |
| | 217 | | } |
| | 218 | |
|
| 0 | 219 | | if (string.IsNullOrWhiteSpace(output)) |
| | 220 | | { |
| 0 | 221 | | _logger.LogError("FFmpeg validation: The process returned no result"); |
| 0 | 222 | | return false; |
| | 223 | | } |
| | 224 | |
|
| 0 | 225 | | _logger.LogDebug("ffmpeg output: {Output}", output); |
| | 226 | |
|
| 0 | 227 | | return ValidateVersionInternal(output); |
| 0 | 228 | | } |
| | 229 | |
|
| | 230 | | internal bool ValidateVersionInternal(string versionOutput) |
| | 231 | | { |
| 8 | 232 | | if (versionOutput.Contains("Libav developers", StringComparison.OrdinalIgnoreCase)) |
| | 233 | | { |
| 0 | 234 | | _logger.LogError("FFmpeg validation: avconv instead of ffmpeg is not supported"); |
| 0 | 235 | | return false; |
| | 236 | | } |
| | 237 | |
|
| | 238 | | // Work out what the version under test is |
| 8 | 239 | | var version = GetFFmpegVersionInternal(versionOutput); |
| | 240 | |
|
| 8 | 241 | | _logger.LogInformation("Found ffmpeg version {Version}", version is not null ? version.ToString() : "unknown |
| | 242 | |
|
| 8 | 243 | | if (version is null) |
| | 244 | | { |
| 1 | 245 | | if (MaxVersion is not null) // Version is unknown |
| | 246 | | { |
| 0 | 247 | | if (MinVersion == MaxVersion) |
| | 248 | | { |
| 0 | 249 | | _logger.LogWarning("FFmpeg validation: We recommend version {MinVersion}", MinVersion); |
| | 250 | | } |
| | 251 | | else |
| | 252 | | { |
| 0 | 253 | | _logger.LogWarning("FFmpeg validation: We recommend a minimum of {MinVersion} and maximum of {Ma |
| | 254 | | } |
| | 255 | | } |
| | 256 | | else |
| | 257 | | { |
| 1 | 258 | | _logger.LogWarning("FFmpeg validation: We recommend minimum version {MinVersion}", MinVersion); |
| | 259 | | } |
| | 260 | |
|
| 1 | 261 | | return false; |
| | 262 | | } |
| | 263 | |
|
| 7 | 264 | | if (version < MinVersion) // Version is below what we recommend |
| | 265 | | { |
| 1 | 266 | | _logger.LogWarning("FFmpeg validation: The minimum recommended version is {MinVersion}", MinVersion); |
| 1 | 267 | | return false; |
| | 268 | | } |
| | 269 | |
|
| 6 | 270 | | if (MaxVersion is not null && version > MaxVersion) // Version is above what we recommend |
| | 271 | | { |
| 0 | 272 | | _logger.LogWarning("FFmpeg validation: The maximum recommended version is {MaxVersion}", MaxVersion); |
| 0 | 273 | | return false; |
| | 274 | | } |
| | 275 | |
|
| 6 | 276 | | return true; |
| | 277 | | } |
| | 278 | |
|
| 0 | 279 | | public IEnumerable<string> GetDecoders() => GetCodecs(Codec.Decoder); |
| | 280 | |
|
| 0 | 281 | | public IEnumerable<string> GetEncoders() => GetCodecs(Codec.Encoder); |
| | 282 | |
|
| 0 | 283 | | public IEnumerable<string> GetHwaccels() => GetHwaccelTypes(); |
| | 284 | |
|
| 0 | 285 | | public IEnumerable<string> GetFilters() => GetFFmpegFilters(); |
| | 286 | |
|
| 0 | 287 | | public IDictionary<int, bool> GetFiltersWithOption() => GetFFmpegFiltersWithOption(); |
| | 288 | |
|
| | 289 | | public Version? GetFFmpegVersion() |
| | 290 | | { |
| | 291 | | string output; |
| | 292 | | try |
| | 293 | | { |
| 0 | 294 | | output = GetProcessOutput(_encoderPath, "-version", false, null); |
| 0 | 295 | | } |
| 0 | 296 | | catch (Exception ex) |
| | 297 | | { |
| 0 | 298 | | _logger.LogError(ex, "Error validating encoder"); |
| 0 | 299 | | return null; |
| | 300 | | } |
| | 301 | |
|
| 0 | 302 | | if (string.IsNullOrWhiteSpace(output)) |
| | 303 | | { |
| 0 | 304 | | _logger.LogError("FFmpeg validation: The process returned no result"); |
| 0 | 305 | | return null; |
| | 306 | | } |
| | 307 | |
|
| 0 | 308 | | _logger.LogDebug("ffmpeg output: {Output}", output); |
| | 309 | |
|
| 0 | 310 | | return GetFFmpegVersionInternal(output); |
| 0 | 311 | | } |
| | 312 | |
|
| | 313 | | /// <summary> |
| | 314 | | /// Using the output from "ffmpeg -version" work out the FFmpeg version. |
| | 315 | | /// For pre-built binaries the first line should contain a string like "ffmpeg version x.y", which is easy |
| | 316 | | /// to parse. If this is not available, then we try to match known library versions to FFmpeg versions. |
| | 317 | | /// If that fails then we test the libraries to determine if they're newer than our minimum versions. |
| | 318 | | /// </summary> |
| | 319 | | /// <param name="output">The output from "ffmpeg -version".</param> |
| | 320 | | /// <returns>The FFmpeg version.</returns> |
| | 321 | | internal Version? GetFFmpegVersionInternal(string output) |
| | 322 | | { |
| | 323 | | // For pre-built binaries the FFmpeg version should be mentioned at the very start of the output |
| 16 | 324 | | var match = FfmpegVersionRegex().Match(output); |
| | 325 | |
|
| 16 | 326 | | if (match.Success) |
| | 327 | | { |
| 12 | 328 | | if (Version.TryParse(match.Groups[1].ValueSpan, out var result)) |
| | 329 | | { |
| 12 | 330 | | return result; |
| | 331 | | } |
| | 332 | | } |
| | 333 | |
|
| 4 | 334 | | var versionMap = GetFFmpegLibraryVersions(output); |
| | 335 | |
|
| 4 | 336 | | var allVersionsValidated = true; |
| | 337 | |
|
| 72 | 338 | | foreach (var minimumVersion in _ffmpegMinimumLibraryVersions) |
| | 339 | | { |
| 32 | 340 | | if (versionMap.TryGetValue(minimumVersion.Key, out var foundVersion)) |
| | 341 | | { |
| 32 | 342 | | if (foundVersion >= minimumVersion.Value) |
| | 343 | | { |
| 16 | 344 | | _logger.LogInformation("Found {Library} version {FoundVersion} ({MinimumVersion})", minimumVersi |
| | 345 | | } |
| | 346 | | else |
| | 347 | | { |
| 16 | 348 | | _logger.LogWarning("Found {Library} version {FoundVersion} lower than recommended version {Minim |
| 16 | 349 | | allVersionsValidated = false; |
| | 350 | | } |
| | 351 | | } |
| | 352 | | else |
| | 353 | | { |
| 0 | 354 | | _logger.LogError("{Library} version not found", minimumVersion.Key); |
| 0 | 355 | | allVersionsValidated = false; |
| | 356 | | } |
| | 357 | | } |
| | 358 | |
|
| 4 | 359 | | return allVersionsValidated ? MinVersion : null; |
| | 360 | | } |
| | 361 | |
|
| | 362 | | /// <summary> |
| | 363 | | /// Grabs the library names and major.minor version numbers from the 'ffmpeg -version' output |
| | 364 | | /// and condenses them on to one line. Output format is "name1=major.minor,name2=major.minor,etc.". |
| | 365 | | /// </summary> |
| | 366 | | /// <param name="output">The 'ffmpeg -version' output.</param> |
| | 367 | | /// <returns>The library names and major.minor version numbers.</returns> |
| | 368 | | private static Dictionary<string, Version> GetFFmpegLibraryVersions(string output) |
| | 369 | | { |
| 4 | 370 | | var map = new Dictionary<string, Version>(); |
| | 371 | |
|
| 72 | 372 | | foreach (Match match in LibraryRegex().Matches(output)) |
| | 373 | | { |
| 32 | 374 | | var version = new Version( |
| 32 | 375 | | int.Parse(match.Groups["major"].ValueSpan, CultureInfo.InvariantCulture), |
| 32 | 376 | | int.Parse(match.Groups["minor"].ValueSpan, CultureInfo.InvariantCulture)); |
| | 377 | |
|
| 32 | 378 | | map.Add(match.Groups["name"].Value, version); |
| | 379 | | } |
| | 380 | |
|
| 4 | 381 | | return map; |
| | 382 | | } |
| | 383 | |
|
| | 384 | | public bool CheckVaapiDeviceByDriverName(string driverName, string renderNodePath) |
| | 385 | | { |
| 0 | 386 | | if (!OperatingSystem.IsLinux()) |
| | 387 | | { |
| 0 | 388 | | return false; |
| | 389 | | } |
| | 390 | |
|
| 0 | 391 | | if (string.IsNullOrEmpty(driverName) || string.IsNullOrEmpty(renderNodePath)) |
| | 392 | | { |
| 0 | 393 | | return false; |
| | 394 | | } |
| | 395 | |
|
| | 396 | | try |
| | 397 | | { |
| 0 | 398 | | var output = GetProcessOutput(_encoderPath, "-v verbose -hide_banner -init_hw_device vaapi=va:" + render |
| 0 | 399 | | return output.Contains(driverName, StringComparison.Ordinal); |
| | 400 | | } |
| 0 | 401 | | catch (Exception ex) |
| | 402 | | { |
| 0 | 403 | | _logger.LogError(ex, "Error detecting the given vaapi render node path"); |
| 0 | 404 | | return false; |
| | 405 | | } |
| 0 | 406 | | } |
| | 407 | |
|
| | 408 | | public bool CheckVulkanDrmDeviceByExtensionName(string renderNodePath, string[] vulkanExtensions) |
| | 409 | | { |
| 0 | 410 | | if (!OperatingSystem.IsLinux()) |
| | 411 | | { |
| 0 | 412 | | return false; |
| | 413 | | } |
| | 414 | |
|
| 0 | 415 | | if (string.IsNullOrEmpty(renderNodePath)) |
| | 416 | | { |
| 0 | 417 | | return false; |
| | 418 | | } |
| | 419 | |
|
| | 420 | | try |
| | 421 | | { |
| 0 | 422 | | var command = "-v verbose -hide_banner -init_hw_device drm=dr:" + renderNodePath + " -init_hw_device vul |
| 0 | 423 | | var output = GetProcessOutput(_encoderPath, command, true, null); |
| 0 | 424 | | foreach (string ext in vulkanExtensions) |
| | 425 | | { |
| 0 | 426 | | if (!output.Contains(ext, StringComparison.Ordinal)) |
| | 427 | | { |
| 0 | 428 | | return false; |
| | 429 | | } |
| | 430 | | } |
| | 431 | |
|
| 0 | 432 | | return true; |
| | 433 | | } |
| 0 | 434 | | catch (Exception ex) |
| | 435 | | { |
| 0 | 436 | | _logger.LogError(ex, "Error detecting the given drm render node path"); |
| 0 | 437 | | return false; |
| | 438 | | } |
| 0 | 439 | | } |
| | 440 | |
|
| | 441 | | [SupportedOSPlatform("macos")] |
| | 442 | | public bool CheckIsVideoToolboxAv1DecodeAvailable() |
| | 443 | | { |
| 0 | 444 | | return ApplePlatformHelper.HasAv1HardwareAccel(_logger); |
| | 445 | | } |
| | 446 | |
|
| | 447 | | private IEnumerable<string> GetHwaccelTypes() |
| | 448 | | { |
| 0 | 449 | | string? output = null; |
| | 450 | | try |
| | 451 | | { |
| 0 | 452 | | output = GetProcessOutput(_encoderPath, "-hwaccels", false, null); |
| 0 | 453 | | } |
| 0 | 454 | | catch (Exception ex) |
| | 455 | | { |
| 0 | 456 | | _logger.LogError(ex, "Error detecting available hwaccel types"); |
| 0 | 457 | | } |
| | 458 | |
|
| 0 | 459 | | if (string.IsNullOrWhiteSpace(output)) |
| | 460 | | { |
| 0 | 461 | | return Enumerable.Empty<string>(); |
| | 462 | | } |
| | 463 | |
|
| 0 | 464 | | var found = output.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).Skip(1).Distinct( |
| 0 | 465 | | _logger.LogInformation("Available hwaccel types: {Types}", found); |
| | 466 | |
|
| 0 | 467 | | return found; |
| | 468 | | } |
| | 469 | |
|
| | 470 | | public bool CheckFilterWithOption(string filter, string option) |
| | 471 | | { |
| 0 | 472 | | if (string.IsNullOrEmpty(filter) || string.IsNullOrEmpty(option)) |
| | 473 | | { |
| 0 | 474 | | return false; |
| | 475 | | } |
| | 476 | |
|
| | 477 | | string output; |
| | 478 | | try |
| | 479 | | { |
| 0 | 480 | | output = GetProcessOutput(_encoderPath, "-h filter=" + filter, false, null); |
| 0 | 481 | | } |
| 0 | 482 | | catch (Exception ex) |
| | 483 | | { |
| 0 | 484 | | _logger.LogError(ex, "Error detecting the given filter"); |
| 0 | 485 | | return false; |
| | 486 | | } |
| | 487 | |
|
| 0 | 488 | | if (output.Contains("Filter " + filter, StringComparison.Ordinal)) |
| | 489 | | { |
| 0 | 490 | | return output.Contains(option, StringComparison.Ordinal); |
| | 491 | | } |
| | 492 | |
|
| 0 | 493 | | _logger.LogWarning("Filter: {Name} with option {Option} is not available", filter, option); |
| | 494 | |
|
| 0 | 495 | | return false; |
| 0 | 496 | | } |
| | 497 | |
|
| | 498 | | public bool CheckSupportedRuntimeKey(string keyDesc, Version? ffmpegVersion) |
| | 499 | | { |
| 0 | 500 | | if (string.IsNullOrEmpty(keyDesc)) |
| | 501 | | { |
| 0 | 502 | | return false; |
| | 503 | | } |
| | 504 | |
|
| | 505 | | string output; |
| | 506 | | try |
| | 507 | | { |
| | 508 | | // With multi-threaded cli support, FFmpeg 7 is less sensitive to keyboard input |
| 0 | 509 | | var duration = ffmpegVersion >= _minFFmpegMultiThreadedCli ? 10000 : 1000; |
| 0 | 510 | | output = GetProcessOutput(_encoderPath, $"-hide_banner -f lavfi -i nullsrc=s=1x1:d={duration} -f null -" |
| 0 | 511 | | } |
| 0 | 512 | | catch (Exception ex) |
| | 513 | | { |
| 0 | 514 | | _logger.LogError(ex, "Error checking supported runtime key"); |
| 0 | 515 | | return false; |
| | 516 | | } |
| | 517 | |
|
| 0 | 518 | | return output.Contains(keyDesc, StringComparison.Ordinal); |
| 0 | 519 | | } |
| | 520 | |
|
| | 521 | | public bool CheckSupportedHwaccelFlag(string flag) |
| | 522 | | { |
| 0 | 523 | | return !string.IsNullOrEmpty(flag) && GetProcessExitCode(_encoderPath, $"-loglevel quiet -hwaccel_flags +{fl |
| | 524 | | } |
| | 525 | |
|
| | 526 | | private IEnumerable<string> GetCodecs(Codec codec) |
| | 527 | | { |
| 0 | 528 | | string codecstr = codec == Codec.Encoder ? "encoders" : "decoders"; |
| | 529 | | string output; |
| | 530 | | try |
| | 531 | | { |
| 0 | 532 | | output = GetProcessOutput(_encoderPath, "-" + codecstr, false, null); |
| 0 | 533 | | } |
| 0 | 534 | | catch (Exception ex) |
| | 535 | | { |
| 0 | 536 | | _logger.LogError(ex, "Error detecting available {Codec}", codecstr); |
| 0 | 537 | | return Enumerable.Empty<string>(); |
| | 538 | | } |
| | 539 | |
|
| 0 | 540 | | if (string.IsNullOrWhiteSpace(output)) |
| | 541 | | { |
| 0 | 542 | | return Enumerable.Empty<string>(); |
| | 543 | | } |
| | 544 | |
|
| 0 | 545 | | var required = codec == Codec.Encoder ? _requiredEncoders : _requiredDecoders; |
| | 546 | |
|
| 0 | 547 | | var found = CodecRegex() |
| 0 | 548 | | .Matches(output) |
| 0 | 549 | | .Select(x => x.Groups["codec"].Value) |
| 0 | 550 | | .Where(x => required.Contains(x)); |
| | 551 | |
|
| 0 | 552 | | _logger.LogInformation("Available {Codec}: {Codecs}", codecstr, found); |
| | 553 | |
|
| 0 | 554 | | return found; |
| 0 | 555 | | } |
| | 556 | |
|
| | 557 | | private IEnumerable<string> GetFFmpegFilters() |
| | 558 | | { |
| | 559 | | string output; |
| | 560 | | try |
| | 561 | | { |
| 0 | 562 | | output = GetProcessOutput(_encoderPath, "-filters", false, null); |
| 0 | 563 | | } |
| 0 | 564 | | catch (Exception ex) |
| | 565 | | { |
| 0 | 566 | | _logger.LogError(ex, "Error detecting available filters"); |
| 0 | 567 | | return Enumerable.Empty<string>(); |
| | 568 | | } |
| | 569 | |
|
| 0 | 570 | | if (string.IsNullOrWhiteSpace(output)) |
| | 571 | | { |
| 0 | 572 | | return Enumerable.Empty<string>(); |
| | 573 | | } |
| | 574 | |
|
| 0 | 575 | | var found = FilterRegex() |
| 0 | 576 | | .Matches(output) |
| 0 | 577 | | .Select(x => x.Groups["filter"].Value) |
| 0 | 578 | | .Where(x => _requiredFilters.Contains(x)); |
| | 579 | |
|
| 0 | 580 | | _logger.LogInformation("Available filters: {Filters}", found); |
| | 581 | |
|
| 0 | 582 | | return found; |
| 0 | 583 | | } |
| | 584 | |
|
| | 585 | | private Dictionary<int, bool> GetFFmpegFiltersWithOption() |
| | 586 | | { |
| 0 | 587 | | Dictionary<int, bool> dict = new Dictionary<int, bool>(); |
| 0 | 588 | | for (int i = 0; i < _filterOptionsDict.Count; i++) |
| | 589 | | { |
| 0 | 590 | | if (_filterOptionsDict.TryGetValue(i, out var val) && val.Length == 2) |
| | 591 | | { |
| 0 | 592 | | dict.Add(i, CheckFilterWithOption(val[0], val[1])); |
| | 593 | | } |
| | 594 | | } |
| | 595 | |
|
| 0 | 596 | | return dict; |
| | 597 | | } |
| | 598 | |
|
| | 599 | | private string GetProcessOutput(string path, string arguments, bool readStdErr, string? testKey) |
| | 600 | | { |
| 0 | 601 | | var redirectStandardIn = !string.IsNullOrEmpty(testKey); |
| 0 | 602 | | using (var process = new Process |
| 0 | 603 | | { |
| 0 | 604 | | StartInfo = new ProcessStartInfo(path, arguments) |
| 0 | 605 | | { |
| 0 | 606 | | CreateNoWindow = true, |
| 0 | 607 | | UseShellExecute = false, |
| 0 | 608 | | WindowStyle = ProcessWindowStyle.Hidden, |
| 0 | 609 | | ErrorDialog = false, |
| 0 | 610 | | RedirectStandardInput = redirectStandardIn, |
| 0 | 611 | | RedirectStandardOutput = true, |
| 0 | 612 | | RedirectStandardError = true |
| 0 | 613 | | } |
| 0 | 614 | | }) |
| | 615 | | { |
| 0 | 616 | | _logger.LogDebug("Running {Path} {Arguments}", path, arguments); |
| | 617 | |
|
| 0 | 618 | | process.Start(); |
| | 619 | |
|
| 0 | 620 | | if (redirectStandardIn) |
| | 621 | | { |
| 0 | 622 | | using var writer = process.StandardInput; |
| 0 | 623 | | writer.Write(testKey); |
| | 624 | | } |
| | 625 | |
|
| 0 | 626 | | using var reader = readStdErr ? process.StandardError : process.StandardOutput; |
| 0 | 627 | | return reader.ReadToEnd(); |
| | 628 | | } |
| 0 | 629 | | } |
| | 630 | |
|
| | 631 | | private bool GetProcessExitCode(string path, string arguments) |
| | 632 | | { |
| 0 | 633 | | using var process = new Process(); |
| 0 | 634 | | process.StartInfo = new ProcessStartInfo(path, arguments) |
| 0 | 635 | | { |
| 0 | 636 | | CreateNoWindow = true, |
| 0 | 637 | | UseShellExecute = false, |
| 0 | 638 | | WindowStyle = ProcessWindowStyle.Hidden, |
| 0 | 639 | | ErrorDialog = false |
| 0 | 640 | | }; |
| 0 | 641 | | _logger.LogDebug("Running {Path} {Arguments}", path, arguments); |
| | 642 | |
|
| | 643 | | try |
| | 644 | | { |
| 0 | 645 | | process.Start(); |
| 0 | 646 | | process.WaitForExit(); |
| 0 | 647 | | return process.ExitCode == 0; |
| | 648 | | } |
| 0 | 649 | | catch (Exception ex) |
| | 650 | | { |
| 0 | 651 | | _logger.LogError("Running {Path} {Arguments} failed with exception {Exception}", path, arguments, ex.Mes |
| 0 | 652 | | return false; |
| | 653 | | } |
| 0 | 654 | | } |
| | 655 | |
|
| | 656 | | [GeneratedRegex("^\\s\\S{6}\\s(?<codec>[\\w|-]+)\\s+.+$", RegexOptions.Multiline)] |
| | 657 | | private static partial Regex CodecRegex(); |
| | 658 | |
|
| | 659 | | [GeneratedRegex("^\\s\\S{3}\\s(?<filter>[\\w|-]+)\\s+.+$", RegexOptions.Multiline)] |
| | 660 | | private static partial Regex FilterRegex(); |
| | 661 | | } |
| | 662 | | } |