From 113d0c513fada1975013654681c0be445925ed24 Mon Sep 17 00:00:00 2001 From: Daniel <790119+DanTheMan827@users.noreply.github.com> Date: Sat, 28 Mar 2026 19:27:31 -0500 Subject: [PATCH] fix(ffmpeg): pass abort signal from ffmpegInfo to inner ffmpeg call --- js/ffmpeg.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ffmpeg.js b/js/ffmpeg.js index dc9eef3..f5e5f40 100644 --- a/js/ffmpeg.js +++ b/js/ffmpeg.js @@ -199,6 +199,7 @@ export async function ffmpegInfo(audioBlob, { onProgress = null, signal = null } onProgress?.(progress); }, + signal, logConsole: false, }); } catch (err) {