Hugo4774
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 3/29/2025 in #djs-voice
ytdl audioplayererror
Hi,
im trying to update my application so my bot connect to a voice channel, and put a sound on it.
I have this code :
// Function to start the music
async lancerMusique(message, numéroJeu) {
const vc = message.guild.channels.cache.find(
(channel) => channel.id === voiceChannel
);
const maZic = trouverMusiqueSelonJeu(numéroJeu);
if (!vc) {
return message.reply(
L'id du channel vocal : "${voiceChannel}" n'existe pas.
);
}
if (!maZic) {
return message.reply("La musique sélectionnée n'existe pas.");
}
try {
// Join the voice channel
const connection = joinVoiceChannel({
channelId: vc.id,
guildId: message.guild.id,
adapterCreator: message.guild.voiceAdapterCreator,
});
// Stream the audio from YouTube URL with better configuration for ytdl-core
const stream = ytdl(maZic, {
filter: 'audioonly',
quality: 'highestaudio',
highWaterMark: 1 << 25 // Increase buffer size for smoother playback
});
// Create audio resource from the stream
const resource = createAudioResource(stream);
// Create the audio player
const player = createAudioPlayer();
// Play the audio
player.play(resource);
// Subscribe to the connection
connection.subscribe(player);
// Respond to the user
message.reply(La musique ${maZic} est jouée dans le vocal ! C'est la musique du __jeu ${numéroJeu}__.
);
// When the music stops, disconnect from the channel
player.on(AudioPlayerStatus.Idle, () => {
connection.destroy();
console.log("Déconnecté du channel vocal après la musique.");
});
} catch (error) {
console.error("Erreur lors de la lecture de la musique:", error);
message.reply("Il y a eu une erreur lors de la tentative de lecture de la musique.");
}
},
I have the last version for ytdl. However, i have this error that i don't know how to fix :
AudioPlayerError: Could not extract functions
Emitted 'error' event on AudioPlayer instance at:
Is someone knows how can i fix it ?
Thanks.7 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 8/12/2023 in #djs-voice
musique in loop
is there a param that can play the music in loop ?
2 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 3/12/2023 in #djs-questions
AudioPlayerError: aborted
Hello, after one minute (exactly) of playing a music in a vocal, i got the following error :
my code to launch music :
8 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 3/12/2023 in #djs-voice
Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
Error [ERR_SOCKET_DGRAM_NOT_RUNNING]: Not running
after a certain time, the sound in the vocal cut and i catch this error, idk where did this come from3 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/29/2023 in #djs-voice
after some times, the bot retrieve an error
I don't know what does this 🤔
12 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/27/2023 in #djs-questions
check if author of message has roleId
if (message.guild.members.cache.get(message.author).roles.cache.has(roleID)) {
TypeError: Cannot read properties of undefined (reading 'roles')
How can i have a member object with my author and then check if he has a role ?7 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/27/2023 in #djs-questions
Await reactions stop at 4 reactions of 4 different user
theMessage.awaitReactions({ filter, maxEmojis: 4, maxUsers: 4, time: time1 * 1000 })
theMessage.awaitReactions({ filter, max: 4, time: time1 * 1000 })
I tried both of this options, however, both of them stopped when i react four time with one user.
Is anybody knows how can i have this ? Should i do it in the filter ?8 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/19/2023 in #djs-questions
awaitreactions on message 14.3.0
why can i react 4 time with the same account ? I want to await until i have 4 users who react in my message of 4 reactions
6 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/19/2023 in #djs-questions
get emoji with his id in 14.3.0
message.guild.emojis.cache.get(emojiA)
Can i do more easily than that ? I tried client.emojis.resolve(emojiA)
and client.emojis.cache.resolve(emojiA)
but it doesn't work18 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/17/2023 in #djs-questions
message on reaction add event v14.3.0
client.rest.on(Events.MessageReactionAdd, async (reaction, user) => {
Hello, is anyone knows how i can get the reaction that are added from a specific message in 14.3.0 ?39 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 1/15/2023 in #djs-questions
manage slash commands and originals commands in the same time
Hello,
i have multiple commands which works fine with normal
?command
. I have now slash commands and my execute function nows only have an interaction Object and not a message, args, Discord, Client... what is the best way to combine these two ?9 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 9/11/2022 in #djs-questions
on slash commands, execute command
on
client.on('interactionCreate', async interaction =>
how can i execute the command ?35 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 9/11/2022 in #djs-questions
how to play youtube audio on a voice channel ?
i recently updated my project to the last version and now ytdl doesn't works.
I made some research on google about it, but everything i test doesn't works.
Is it still possible or we can't do that anymore ?
Thinks for help
15 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 9/10/2022 in #djs-questions
avatar.js Cannot send an empty message
i recently update my node version, my discord.js version and my npm version.
While doing
?avatar @pingOne @pingTwo
, i get the error :
My code is :
8 replies
DIAdiscord.js - Imagine an app
•Created by Hugo4774 on 8/28/2022 in #djs-questions
can i do otherwise than `node index.js` to relaunch my bot ?
i would like to stop stop and restart my bot by doing
node index.js
, do you know if there is a something that i can do ?
Thinks.14 replies