From 0032a080ac1a6dafe52317753d5691084ff6143f Mon Sep 17 00:00:00 2001 From: Burak Karakoc <83516417+burakkarakoc@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:09:37 +0300 Subject: [PATCH] Update ffmpeg_install.py Increases up-to-dateness of the ffmpeg package for linux machines. --- utils/ffmpeg_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ffmpeg_install.py b/utils/ffmpeg_install.py index 7d5b3ad..bb740bb 100644 --- a/utils/ffmpeg_install.py +++ b/utils/ffmpeg_install.py @@ -65,7 +65,7 @@ def ffmpeg_install_windows(): def ffmpeg_install_linux(): try: subprocess.run( - "sudo apt install ffmpeg", + "sudo apt-get update && sudo apt install ffmpeg", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE,