mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-26 13:00:17 +00:00
cleanup
This commit is contained in:
parent
2dc0280a31
commit
b8d8095524
3 changed files with 1 additions and 51 deletions
|
@ -1,37 +0,0 @@
|
||||||
//Authour: Dustin Harris
|
|
||||||
//GitHub: https://github.com/DevL0rd
|
|
||||||
var reset = "\x1b[0m";
|
|
||||||
|
|
||||||
var style = {
|
|
||||||
bright: "\x1b[1m",
|
|
||||||
dim: "\x1b[2m",
|
|
||||||
underscore: "\x1b[4m",
|
|
||||||
blink: "\x1b[5m",
|
|
||||||
reverse: "\x1b[7m",
|
|
||||||
hidden: "\x1b[8m"
|
|
||||||
}
|
|
||||||
|
|
||||||
var fg = {
|
|
||||||
black: "\x1b[30m",
|
|
||||||
red: "\x1b[31m",
|
|
||||||
green: "\x1b[32m",
|
|
||||||
yellow: "\x1b[33m",
|
|
||||||
blue: "\x1b[34m",
|
|
||||||
magenta: "\x1b[35m",
|
|
||||||
cyan: "\x1b[36m",
|
|
||||||
white: "\x1b[37m"
|
|
||||||
}
|
|
||||||
var bg = {
|
|
||||||
black: "\x1b[40m",
|
|
||||||
red: "\x1b[41m",
|
|
||||||
green: "\x1b[42m",
|
|
||||||
yellow: "\x1b[43m",
|
|
||||||
blue: "\x1b[44m",
|
|
||||||
magenta: "\x1b[45m",
|
|
||||||
cyan: "\x1b[46m",
|
|
||||||
white: "\x1b[47m"
|
|
||||||
}
|
|
||||||
exports.bg = bg;
|
|
||||||
exports.fg = fg;
|
|
||||||
exports.style = style;
|
|
||||||
exports.reset = reset;
|
|
|
@ -1,13 +0,0 @@
|
||||||
//Authour: Dustin Harris
|
|
||||||
//GitHub: https://github.com/DevL0rd
|
|
||||||
var cc = require('./conColors.js');
|
|
||||||
console.log(cc.style.bright + cc.fg.blue)
|
|
||||||
console.log(" ____ ___ __ ");
|
|
||||||
console.log("/\\ _`\\ /\\_ \\ /\\ \\ ");
|
|
||||||
console.log("\\ \\ \\/\\ \\ __ __ __\\//\\ \\ ___ _ __ \\_\\ \\ ");
|
|
||||||
console.log(" \\ \\ \\ \\ \\ /'__`\\/\\ \\/\\ \\ \\ \\ \\ / __`\\/\\`'__\\/'_` \\ ");
|
|
||||||
console.log(" \\ \\ \\_\\ \\/\\ __/\\ \\ \\_/ | \\_\\ \\_/\\ \\_\\ \\ \\ \\//\\ \\_\\ \\ ");
|
|
||||||
console.log(" \\ \\____/\\ \\____\\\\ \\___/ /\\____\\ \\____/\\ \\_\\\\ \\___,_\\ ");
|
|
||||||
console.log(" \\/___/ \\/____/ \\/__/ \\/____/\\/___/ \\/_/ \\/__,_ / ");
|
|
||||||
console.log(" ");
|
|
||||||
console.log(cc.reset)
|
|
|
@ -70,7 +70,7 @@ function startVideoProcess() {
|
||||||
console.log(`${data}`);
|
console.log(`${data}`);
|
||||||
});
|
});
|
||||||
ffmpegProcess.stderr.on('data', (data) => {
|
ffmpegProcess.stderr.on('data', (data) => {
|
||||||
console.error(`ffmpegProcessErr: ${data}`);
|
console.error(`${data}`);
|
||||||
});
|
});
|
||||||
ffmpegProcess.on('close', (code) => {
|
ffmpegProcess.on('close', (code) => {
|
||||||
console.log(`VideoProcess process exited with code ${code}`);
|
console.log(`VideoProcess process exited with code ${code}`);
|
||||||
|
|
Loading…
Reference in a new issue