From 43fcf9e63af520b412ce6326eb45d4e12b494964 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Fri, 24 May 2024 11:31:28 -0500 Subject: [PATCH] upgrade to ffmpeg 7 on windows (#1727) --- .github/workflows/artifacts.yml | 2 +- .../Health/Checks/FFmpegVersionHealthCheck.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 3c3ba67a..e0cf803f 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -178,7 +178,7 @@ jobs: id: downloadffmpeg name: Download ffmpeg with: - url: "https://github.com/ErsatzTV/ErsatzTV-ffmpeg/releases/download/6.1-working-cuvid/ffmpeg-6.1-working-cuvid.7z" + url: "https://github.com/ErsatzTV/ErsatzTV-ffmpeg/releases/download/7.0-working-cuvid/ffmpeg-7.0-working-cuvid.7z" target: ffmpeg/ - name: Build diff --git a/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs b/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs index ec6b4a17..81419a92 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 = "7.0"; private const string BundledVersionVaapi = "7.0"; - private const string WindowsVersionPrefix = "n6.1"; + private const string WindowsVersionPrefix = "n7.0"; private static readonly string[] FFmpegVersionArguments = { "-version" };