From 2ea008126e94c6e3eebfb20272ad27010dc3e38c Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Sat, 1 Nov 2025 21:56:40 +0530 Subject: [PATCH] fix: yt-dlp unable to resolve deno on macos --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 2adae44..97b7fc8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -304,7 +304,7 @@ export default function App({ children }: { children: React.ReactNode }) { ]; if (currentPlatform === 'macos') { - args.push('--ffmpeg-location', '/Applications/NeoDLP.app/Contents/MacOS'); + args.push('--ffmpeg-location', '/Applications/NeoDLP.app/Contents/MacOS', '--js-runtimes deno:/Applications/NeoDLP.app/Contents/MacOS/deno'); } if (!DEBUG_MODE || (DEBUG_MODE && !LOG_WARNING)) {