Fix missing space after argument
This commit is contained in:
parent
f9bf73f6d7
commit
84d3f2c103
1 changed files with 5 additions and 4 deletions
|
@ -86,9 +86,10 @@ class Encoder {
|
|||
command += `-maxrate ${Math.floor(videoBitRate * 1.4)}k `
|
||||
command += `-b:a ${audioBitRate}k `
|
||||
command += `-tile-columns 2 -threads 6 `
|
||||
command += `-qmax 60`
|
||||
command += `-qmax 60 `
|
||||
command += `-g 240 `
|
||||
command += `-row-mt 1 "${out}.webm" `
|
||||
console.log(command)
|
||||
return [command, duration, false]
|
||||
}
|
||||
|
||||
|
@ -103,7 +104,7 @@ class Encoder {
|
|||
command += `-maxrate ${Math.floor(videoBitRate * 1.2)}k `
|
||||
command += `-b:a ${audioBitRate}k `
|
||||
command += `-auto-alt-ref 6 `
|
||||
command += `-qmax 60`
|
||||
command += `-qmax 60 `
|
||||
command += `-g 240 `
|
||||
|
||||
command += `-row-mt 1 -pass 1 -f webm NUL && `
|
||||
|
@ -120,11 +121,11 @@ class Encoder {
|
|||
command += `-b:a ${audioBitRate}k `
|
||||
command += `-tile-columns 2 -threads 6 `
|
||||
command += `-auto-alt-ref 6 `
|
||||
command += `-qmax 60`
|
||||
command += `-qmax 60 `
|
||||
command += `-g 240 `
|
||||
|
||||
command += `-row-mt 1 -pass 2 "${out}.webm" `
|
||||
|
||||
console.log(command)
|
||||
return [command, duration, isTwoPass]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue