try to escape last ffmpeg command on windows

also escape quote on linux

closes #2151
pull/2119/head
Mikael Finstad 1 year ago
parent 93f47b9c35
commit b6645fa445
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -24,8 +24,16 @@ export function setCustomFfPath(path: string | undefined) {
customFfPath = path;
}
function escapeCliArg(arg: string) {
if (isWindows) {
// https://github.com/mifi/lossless-cut/issues/2151
return /[\s"&<>^|]/.test(arg) ? `"${arg.replaceAll('"', '""')}"` : arg;
}
return /[^\w-]/.test(arg) ? `'${arg.replaceAll("'", '\'"\'"\'')}'` : arg;
}
export function getFfCommandLine(cmd: string, args: readonly string[]) {
return `${cmd} ${args.map((arg) => (/[^\w-]/.test(arg) ? `'${arg}'` : arg)).join(' ')}`;
return `${cmd} ${args.map((arg) => escapeCliArg(arg)).join(' ')}`;
}
function getFfPath(cmd: string) {

Loading…
Cancel
Save