Browse Source

upgrade to ffmpeg 7 on windows (#1727)

pull/1729/head
Jason Dove 12 months ago committed by GitHub
parent
commit
43fcf9e63a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/artifacts.yml
  2. 2
      ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs

2
.github/workflows/artifacts.yml

@ -178,7 +178,7 @@ jobs: @@ -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

2
ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs

@ -10,7 +10,7 @@ public class FFmpegVersionHealthCheck : BaseHealthCheck, IFFmpegVersionHealthChe @@ -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" };

Loading…
Cancel
Save