Fix missing space after argument

This commit is contained in:
Djkato 2022-05-30 19:36:09 +02:00
parent f9bf73f6d7
commit 84d3f2c103

View file

@ -89,6 +89,7 @@ class Encoder {
command += `-qmax 60 ` command += `-qmax 60 `
command += `-g 240 ` command += `-g 240 `
command += `-row-mt 1 "${out}.webm" ` command += `-row-mt 1 "${out}.webm" `
console.log(command)
return [command, duration, false] return [command, duration, false]
} }
@ -124,7 +125,7 @@ class Encoder {
command += `-g 240 ` command += `-g 240 `
command += `-row-mt 1 -pass 2 "${out}.webm" ` command += `-row-mt 1 -pass 2 "${out}.webm" `
console.log(command)
return [command, duration, isTwoPass] return [command, duration, isTwoPass]
} }