From 4db7497b8ed5a887f7cf304f5f2936e4e1ab05b5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 Oct 2024 17:39:49 +0530 Subject: [PATCH] Add ffmpeg bin dir to dll directories on CI --- setup/win-ci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/win-ci.py b/setup/win-ci.py index ae1160ee11..9ce0d555cc 100644 --- a/setup/win-ci.py +++ b/setup/win-ci.py @@ -86,6 +86,7 @@ def setup_env(): os.environ['CI'] = 'true' os.environ['OPENSSL_MODULES'] = os.path.join(SW, 'lib', 'ossl-modules') os.environ['PIPER_TTS_DIR'] = os.path.join(SW, 'piper') + os.add_dll_directory(os.path.join(SW, 'ffmpeg', 'bin')) def main():