forked from Supositware/Haha-Yes
85 lines
No EOL
2.1 KiB
JavaScript
85 lines
No EOL
2.1 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 vidshittifyerCommand extends Command {
|
|
constructor() {
|
|
super('vidshittifyer', {
|
|
aliases: ['vidshittifyer', 'vs', 'shittifyer', 'vid2shit', 'v2s'],
|
|
category: 'fun',
|
|
args: [
|
|
{
|
|
id: 'link',
|
|
type: 'string',
|
|
},
|
|
{
|
|
id: 'compresion',
|
|
type: 'string'
|
|
},
|
|
{
|
|
id: 'alt',
|
|
match: 'flag',
|
|
flag: '--alt'
|
|
},
|
|
{
|
|
id: 'watermark',
|
|
match: 'flag',
|
|
flag: '--watermark'
|
|
|
|
}
|
|
],
|
|
description: {
|
|
content: 'Make your vid shit quality.',
|
|
usage: '[link to video] [compression ( 1, 2 or 3)]',
|
|
examples: ['']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
let input = `${os.tmpdir()}/${message.id}.mp4`;
|
|
let output = `${os.tmpdir()}/Shittifyed${message.id}.mp4`;
|
|
let compression;
|
|
if (args.compression == 1) {
|
|
compression = '10M';
|
|
} else if (args.compression == 2) {
|
|
compression = '5M';
|
|
} else {
|
|
compression = '10k';
|
|
}
|
|
let option = `-b:v ${compression} -b:a ${compression}`;
|
|
|
|
let loadingmsg = await message.channel.send('Processing <a:loadingmin:527579785212329984>');
|
|
|
|
if (args.link) {
|
|
return youtubedl.exec(args.link, ['-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.');
|
|
}
|
|
loadingmsg.delete();
|
|
shittify();
|
|
});
|
|
} else {
|
|
return message.channel.send('You need a valid video link!');
|
|
}
|
|
|
|
function shittify() {
|
|
exec(`ffmpeg -i ${input} ${option} -vcodec libx264 -r 5 -r 15 ${output}`)
|
|
.then(() => {
|
|
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?');
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = vidshittifyerCommand; |