From 7586647b73624cbd08cf75a0cd71ffd9c8a1c6af Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Thu, 23 Nov 2023 06:05:49 -0600 Subject: [PATCH] fix ffmpeg version health check on windows (#1515) --- .../Health/Checks/FFmpegVersionHealthCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs b/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs index 70f2eecaa..d404fcaae 100644 --- a/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs +++ b/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs @@ -10,7 +10,7 @@ public class FFmpegVersionHealthCheck : BaseHealthCheck, IFFmpegVersionHealthChe { private const string BundledVersion = "6.1"; private const string BundledVersionVaapi = "6.1"; - private const string WindowsVersionPrefix = "6.1"; + private const string WindowsVersionPrefix = "n6.1"; private readonly IConfigElementRepository _configElementRepository; public FFmpegVersionHealthCheck(IConfigElementRepository configElementRepository) =>