fix concat command bug

fixes #2766
pull/2801/head
Mikael Finstad 4 months ago
parent 26030103a1
commit 260301eb23
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -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);

Loading…
Cancel
Save