You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/utility/vid2gif.js

58 lines
1.5 KiB
JavaScript

const { Command } = require('discord-akairo');
const fs = require('fs');
const os = require('os');
const util = require('util');
const exec = util.promisify(require('child_process').exec);
const superagent = require('superagent');
class vid2giftCommand extends Command {
constructor() {
super('vid2gift', {
aliases: ['vid2gif', 'v2g'],
category: 'utility',
args: [
{
id: 'vid',
type: 'string'
}
],
description: {
content: 'Transform video into gif',
usage: '[link to video]',
examples: ['']
}
});
}
async exec(message, args) {
let vid = args.vid;
if (!vid) {
return message.channel.send('I need a video to do that!');
} else if (vid) {
const { body: buffer } = await superagent.get(vid).catch(() => {
return message.channel.send('An error as occured, please try again');
});
fs.writeFile(`${os.tmpdir()}/${message.id}v2g`, buffer, () => {
exec(`ffmpeg -i ${os.tmpdir()}/${message.id}v2g ${os.tmpdir()}/${message.id}v2g.gif -hide_banner`)
.then(() => {
return message.channel.send({files: [`${os.tmpdir()}/${message.id}v2g.gif`]})
.catch(err => {
console.error(err);
return message.channel.send('Could not send the file! Perhaps the file is too big?');
});
})
.catch(err => {
console.error(err);
return message.channel.send('There was an error during conversion! maybe try with another file type?');
});
});
}
}
}
module.exports = vid2giftCommand;