1
0
Fork 0
Loïc Bersier 6 years ago
parent ab4ad14d2c
commit 94edcb7bb6

@ -26,13 +26,16 @@ module.exports = class downloadCommand extends Command {
if(blacklist[message.author.id]) if(blacklist[message.author.id])
return message.channel.send("You are blacklisted") return message.channel.send("You are blacklisted")
if(link.includes("http") || link.includes("www")) { if(link.includes("http") || link.includes("www")) {
message.say('Downloading...') message.say('Downloading...').then(msg => {
video.on('end', function() {
msg.delete()
})
})
let video = youtubedl(link, [`--username=${fbuser}`,`--password=${fbpasswd}`]) let video = youtubedl(link, [`--username=${fbuser}`,`--password=${fbpasswd}`])
video.pipe(fs.createWriteStream('video.mp4')) video.pipe(fs.createWriteStream('video.mp4'))
video.on('end', function() { video.on('end', function() {
message.channel.bulkDelete(2); message.delete();
message.say(`Download by ${message.author.username}`) message.channel.send(`Downloaded by ${message.author.username}`, {files: ["./video.mp4"]})
message.channel.send({files: ["./video.mp4"]})
.catch(error => message.say('An error has occured, the file might be too big or i cant download the link you provided')) .catch(error => message.say('An error has occured, the file might be too big or i cant download the link you provided'))
}) })
} else } else

Loading…
Cancel
Save