From 7ad3b0dfdf392e0ec8b9b66a8ab1ae2a98adf8d1 Mon Sep 17 00:00:00 2001 From: meicich Date: Wed, 13 Dec 2023 00:00:38 +0900 Subject: [PATCH] =?UTF-8?q?fix:ffmpeg=E3=81=AEDLurl=E3=81=AE=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core.py b/modules/core.py index 8778e5e..608e0e0 100644 --- a/modules/core.py +++ b/modules/core.py @@ -102,7 +102,7 @@ def install_ffmpeg(): return tmpdir = os.path.join(ROOT_DIR, "tmp") url = ( - "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-5.1.2-essentials_build.zip" + "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-6.0-essentials_build.zip" ) out = os.path.join(tmpdir, "ffmpeg.zip") os.makedirs(os.path.dirname(out), exist_ok=True) @@ -110,7 +110,7 @@ def install_ffmpeg(): shutil.unpack_archive(out, os.path.join(tmpdir, "ffmpeg")) shutil.copyfile( os.path.join( - tmpdir, "ffmpeg", "ffmpeg-5.1.2-essentials_build", "bin", "ffmpeg.exe" + tmpdir, "ffmpeg", "ffmpeg-6.0-essentials_build", "bin", "ffmpeg.exe" ), os.path.join(ROOT_DIR, "bin", "ffmpeg.exe"), )