Take random vid from the userVid folder and don't take twice the same vid
This commit is contained in:
parent
5406bd92d2
commit
64fbce6927
1 changed files with 52 additions and 46 deletions
|
@ -74,17 +74,23 @@ class ytpCommand extends Command {
|
|||
if (!message.channel.nsfw && !args.force) return message.channel.send('Please execute this command in an NSFW channel ( Content might not be NSFW but since the video are user submitted better safe than sorry ) OR --force to make the command work outside of nsfw channel BE AWARE THAT IT WON\'T CHANGE THE FINAL RESULT SO NSFW CAN STILL HAPPEN');
|
||||
let loadingmsg = await message.channel.send(`Processing, this can take a **long** time, i'll ping you when i finished <a:loadingmin:527579785212329984>\nSome info: There is currently ${fs.readdirSync('./asset/ytp/userVid/').length} videos, you can add yours by doing \`\`${prefix[0]}ytp --add (link or attachment)\`\``);
|
||||
|
||||
// Read userVid folder and only take .mp4
|
||||
// Read userVid folder and select random vid and only take .mp4
|
||||
let asset = [];
|
||||
fs.readdir('./asset/ytp/userVid/', (err, files) => {
|
||||
files.forEach(file => {
|
||||
if (file.endsWith('.mp4')) {
|
||||
asset.push(`./asset/ytp/userVid/${file}`);
|
||||
let files = fs.readdirSync('./asset/ytp/userVid/');
|
||||
for (let i = 0; i < 20; i++) {
|
||||
console.log(i);
|
||||
let random = Math.floor(Math.random() * files.length);
|
||||
let vid = `./asset/ytp/userVid/${files[random]}`;
|
||||
if (files[random].endsWith('mp4')) {
|
||||
if (!asset.includes(vid)) {
|
||||
asset.push(vid);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let options = {
|
||||
debug: false, // Better set this to false to avoid flood in console
|
||||
debug: true, // Better set this to false to avoid flood in console
|
||||
MIN_STREAM_DURATION: Math.floor((Math.random() * 2) + 1), // Random duration of video clip
|
||||
sources: './asset/ytp/sources/',
|
||||
sounds: './asset/ytp/sounds/',
|
||||
|
@ -119,11 +125,11 @@ class ytpCommand extends Command {
|
|||
return message.channel.send('Whoops, look like the vid might be too big for discord, my bad, please try again');
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
loadingmsg.delete();
|
||||
return message.reply('Oh no! An error has occured!');
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue