Haha-Yes/commands/fun/youtube.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-10-10 12:06:37 +02:00
const { Command } = require('discord.js-commando');
const fs = require('fs');
const ytdl = require('ytdl-core')
module.exports = class youtubeCommand extends Command {
constructor(client) {
super(client, {
name: 'youtube',
group: 'fun',
memberName: 'youtube',
description: `Send a youtube link as mp4`,
args: [
{
key: 'link',
prompt: 'Wich youtube link would you like to send',
type: 'string',
default: 'https://www.youtube.com/watch?v=6n3pFFPSlW4'
}
]
});
}
async run(message, { link }) {
2018-10-11 13:14:32 +02:00
if(link.includes("http") || link.includes("www")) {
2018-10-10 12:06:37 +02:00
ytdl(link, { filter: (format) => format.container === 'mp4' })
.pipe(fs.createWriteStream('video.mp4'))
setTimeout(function(){
message.channel.sendFile("./video.mp4")
2018-10-10 12:45:04 +02:00
.catch(error => {
message.say('Video too long')
})
2018-10-11 13:14:32 +02:00
}, 5000)
2018-10-11 18:37:59 +02:00
} else
message.say("You need to input a valid youtube link")
2018-10-11 13:14:32 +02:00
}
2018-10-10 12:06:37 +02:00
}