From 443bba0095dfd07ecd37cb321505609153536a36 Mon Sep 17 00:00:00 2001 From: synt-xerror <169557594+synt-xerror@users.noreply.github.com> Date: Tue, 21 Apr 2026 14:09:10 -0300 Subject: [PATCH] fix: figurinha now uses ffmpeg from PATH and not a local one --- figurinha/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/figurinha/index.js b/figurinha/index.js index 31ec887..0a17d31 100644 --- a/figurinha/index.js +++ b/figurinha/index.js @@ -25,7 +25,7 @@ const execFileAsync = promisify(execFile); // ── Constants ──────────────────────────────────────────────── const DOWNLOADS_DIR = path.resolve("downloads"); -const FFMPEG = os.platform() === "win32" ? ".\\bin\\ffmpeg.exe" : "./bin/ffmpeg"; +const FFMPEG = "ffmpeg"; const MAX_STICKER_SIZE = 900 * 1024; const SESSION_TIMEOUT = 2 * 60 * 1000; const MAX_MEDIA = 30;