diff --git a/src/renderer/src/hooks/useFfmpegOperations.ts b/src/renderer/src/hooks/useFfmpegOperations.ts index f8fa41f8..11034c3d 100644 --- a/src/renderer/src/hooks/useFfmpegOperations.ts +++ b/src/renderer/src/hooks/useFfmpegOperations.ts @@ -221,7 +221,7 @@ function useFfmpegOperations({ filePath, treatInputFileModifiedTimeAsStart, trea const ffmpegCommandLine = getFfCommandLine('ffmpeg', ffmpegArgs); - const fullCommandLine = `echo -e "${concatTxt.replace(/\n/, String.raw`\n`)}" | ${ffmpegCommandLine}`; + const fullCommandLine = `echo -e "${concatTxt.replaceAll('\n', String.raw`\n`)}" | ${ffmpegCommandLine}`; console.log(fullCommandLine); appendLastCommandsLog(fullCommandLine);