From bf1b835d6da7f8515c6715a4152d3faed0f201d6 Mon Sep 17 00:00:00 2001 From: kermieisinthehouse Date: Thu, 16 Dec 2021 02:29:42 +0000 Subject: [PATCH] Fix ffmpeg downloader on windows (#2133) --- pkg/ffmpeg/downloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ffmpeg/downloader.go b/pkg/ffmpeg/downloader.go index 10cd96949..a5f655ace 100644 --- a/pkg/ffmpeg/downloader.go +++ b/pkg/ffmpeg/downloader.go @@ -46,7 +46,7 @@ func Download(ctx context.Context, configDirectory string) error { } // validate that the urls contained what we needed - executables := []string{"ffmpeg", "ffprobe"} + executables := []string{getFFMPEGFilename(), getFFProbeFilename()} for _, executable := range executables { _, err := os.Stat(filepath.Join(configDirectory, executable)) if err != nil {