Don't show stdout

pull/1/head
Supositware 2 years ago
parent f13c1f3ca2
commit b637a73a85

@ -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…
Cancel
Save