Remove stray console.logs

This commit is contained in:
Djkato 2022-05-31 23:53:39 +02:00
parent 84d3f2c103
commit 8daf8d07d7

View file

@ -89,7 +89,6 @@ 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]
} }
@ -125,7 +124,6 @@ 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]
} }