From d7de1cded8d1955c5fedec652fec255ffd837f52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=B6=E7=91=BE?= Date: Thu, 6 Nov 2025 21:12:56 +0800 Subject: [PATCH] feat: add ffmpeg-builds binary mirror (#879) [skip ci] ## Summary by CodeRabbit * **New Features** * FFmpeg builds are now available as a supported binary source, offering static builds for Windows and Linux platforms (x86_64). Both master branch and latest release versions are accessible. --- config/binaries.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/binaries.ts b/config/binaries.ts index 45ce057c..57d81aca 100644 --- a/config/binaries.ts +++ b/config/binaries.ts @@ -955,6 +955,13 @@ const binaries = { repo: 'microsoft/ripgrep-prebuilt', distUrl: 'https://github.com/microsoft/ripgrep-prebuilt/releases', }, + 'ffmpeg-builds': { + category: 'ffmpeg-builds', + description: 'Static Windows (x86_64) and Linux (x86_64) Builds of ffmpeg master and latest release branch.', + type: BinaryType.GitHub, + repo: 'KarinJS/FFmpeg-Builds', + distUrl: 'https://github.com/KarinJS/FFmpeg-Builds/releases', + }, } as const; export interface BinaryTaskConfig {