forked from Supositware/Haha-Yes
98 lines
No EOL
2.8 KiB
JavaScript
98 lines
No EOL
2.8 KiB
JavaScript
const { Command } = require('discord-akairo');
|
|
const util = require('util');
|
|
const exec = util.promisify(require('child_process').exec);
|
|
const youtubedl = require('youtube-dl');
|
|
const os = require('os');
|
|
|
|
class vidshittifierCommand extends Command {
|
|
constructor() {
|
|
super('vidshittifier', {
|
|
aliases: ['vidshittifier', 'vs', 'shittifier', 'vid2shit', 'v2s'],
|
|
category: 'fun',
|
|
clientPermissions: ['SEND_MESSAGES', 'ATTACH_FILES'],
|
|
args: [
|
|
{
|
|
id: 'link',
|
|
type: 'string',
|
|
},
|
|
{
|
|
id: 'compression',
|
|
type: 'integer'
|
|
}
|
|
],
|
|
description: {
|
|
content: 'Make your vid shit quality.',
|
|
usage: '[link to video] [compression ( 1, 2 or 3)]',
|
|
examples: ['']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
let Attachment = (message.attachments).array();
|
|
let url = args.link;
|
|
// Get attachment link
|
|
if (Attachment[0] && !args.link) {
|
|
url = Attachment[0].url;
|
|
}
|
|
|
|
let input = `${os.tmpdir()}/${message.id}.mp4`;
|
|
let input2 = `${os.tmpdir()}/tmp${message.id}.mp4`;
|
|
let output = `${os.tmpdir()}/Shittified${message.id}.mp4`;
|
|
|
|
let compression;
|
|
let audioCompression;
|
|
|
|
if (args.compression == 1) {
|
|
compression = '50k';
|
|
audioCompression = '100k';
|
|
} else {
|
|
compression = '30k';
|
|
audioCompression = '60k';
|
|
}
|
|
|
|
let option = `-b:v ${compression} -b:a ${audioCompression}`;
|
|
|
|
let loadingmsg = await message.channel.send('Processing <a:loadingmin:527579785212329984>');
|
|
|
|
if (url) {
|
|
return youtubedl.exec(url, ['--format=mp4', '-o', input], {}, function(err) {
|
|
if (err) {
|
|
console.error(err);
|
|
loadingmsg.delete();
|
|
return message.channel.send('An error has occured, I can\'t download from the link you provided.');
|
|
} else {
|
|
shittifie();
|
|
}
|
|
});
|
|
} else {
|
|
return message.channel.send('You need a valid video link!');
|
|
}
|
|
|
|
function shittifie() {
|
|
// reduce video resolution
|
|
exec(`ffmpeg -i ${input} -vf "scale=iw/4:ih/4" ${input2}`)
|
|
.then(() => {
|
|
// upscale video and change bitrate
|
|
exec(`ffmpeg -i ${input2} ${option} -vf "scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2" -vcodec libx264 -r 15 -f mp4 ${output}`)
|
|
.then(() => {
|
|
loadingmsg.delete();
|
|
message.delete();
|
|
return message.channel.send({files: [output]})
|
|
.catch(err => {
|
|
console.error(err);
|
|
loadingmsg.delete();
|
|
return message.channel.send('On no! an error just occured! perhaps the file is too big?');
|
|
});
|
|
})
|
|
.catch(err => {
|
|
console.error(err);
|
|
loadingmsg.delete();
|
|
return message.channel.send('On no! an error just occured! Im gonna be honest with you, i don\'t know what caused it yet! but worry not! my owner will look into it soon!');
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = vidshittifierCommand; |