Convert vid to gif
This commit is contained in:
parent
00952fd921
commit
09f7c0e93a
1 changed files with 58 additions and 0 deletions
58
commands/utility/vid2gif.js
Normal file
58
commands/utility/vid2gif.js
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
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;
|
Loading…
Reference in a new issue