From cefd1f40ab7033e543f210ede747d0a878d318f8 Mon Sep 17 00:00:00 2001 From: orenkaizer Date: Sat, 4 Jun 2022 21:31:51 +0300 Subject: [PATCH] fix: put your own ffmpeg.exe path(on macOs only) --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 8650062..6cf1527 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,7 @@ import os from sys import platform if platform == "darwin": # Check if running on MacOs, needs to add that ffmpeg.exe path - os.environ["IMAGEIO_FFMPEG_EXE"] = "/Users/orenking/audio-orchestrator-ffmpeg/bin/ffmpeg" + os.environ["IMAGEIO_FFMPEG_EXE"] = "YOUR_PATH_TO_FFPEG.EXE" from utils.console import print_markdown import time