Don't show stdout
This commit is contained in:
parent
f13c1f3ca2
commit
b637a73a85
2 changed files with 5 additions and 5 deletions
|
@ -68,7 +68,7 @@ async function gifski(output, input) {
|
|||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
resolve(stdout);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -82,7 +82,7 @@ async function gifsicle(input, output) {
|
|||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
resolve(stdout);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ async function downloadVideo(urlArg, output, format = 'bestvideo*+bestaudio/best
|
|||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
resolve(stdout);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ async function ffmpeg(command) {
|
|||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
resolve(stdout);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -69,7 +69,7 @@ async function compressVideo(input, output, preset) {
|
|||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
resolve(stdout);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue