From 5aa8d15d85797f68a8f169ca69fd90d441a3abbe Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 21 Dec 2021 10:58:58 -0800 Subject: [PATCH] Use FFMPEG_BIN instead of "ffmpeg" for sound incorporation --- manimlib/scene/scene_file_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/scene/scene_file_writer.py b/manimlib/scene/scene_file_writer.py index 6f160c3c..297e96d0 100644 --- a/manimlib/scene/scene_file_writer.py +++ b/manimlib/scene/scene_file_writer.py @@ -308,7 +308,7 @@ class SceneFileWriter(object): ) temp_file_path = stem + "_temp" + ext commands = [ - "ffmpeg", + FFMPEG_BIN, "-i", movie_file_path, "-i", sound_file_path, '-y', # overwrite output file if it exists