discord.js - Imagine an app

DIA

discord.js - Imagine an app

Support server for discord.js, a Node.js module to interact with Discords apps API.

Join

djs-questions

djs-voice

Question about connection.on

When a voice connection is destroyed, does the connection.on method get destroyed as well? Because I don't want to overload the bot, and I want to create a new connection.on method when creating a new connection.

Play command

I was making a play command ``` await interaction.deferReply(); const search = await ytse(given_song);...

Cannot join voice channel

I am rewritting my bot from DJS v12 to v14. I started by writing a simple music bot that would play a youtube link using ytdl-core. But when it tries to join a voice channel it just doesn't and then it is unable to subscribe. I believe it may have something to do with the voice adapter but I am not sure how that works. Gateway intents are enabled, and I did manage to make it join using the discord-player package but that package is way beyond my understanding....

If I wait a while and then resume, nothing plays.

If I wait a while and then resume, nothing plays. About 30s ~ 1m...

502 crashes the bot

i'm playing audios that's uploaded as mp3 files in the host, and suddenly the bot crash with this err

Is there an way to install seek function on my bot?

I tried AudioResource's playStream seek, but it doesn't work. What can I do? I think there's way because discord-player can do that task. Could someone help me? I saw discord-player's code, but I can't realize it....

SpeakingMap stops triggering 'start' events after some time

My bot is connected to the voice channel through a VoiceConnection and has a VoiceReceiver. I added an event listener for the 'start' event of the SpeakingMap. It seems to work fine for around 1 minute then stops triggering. Any help would be appreciated.

Radio

My bot is playing music from an online radio station, but the music stops playing after like 30 seconds. I thought it was something with YouTube only, but it also affects my radio bot. Is there any way to fix it without pauses in between the music?

How to seek an aduio

const resource = createAudioResource(path, { seek: 60000, volume: 1 });
player.play(resource)
const resource = createAudioResource(path, { seek: 60000, volume: 1 });
player.play(resource)
const resource = createAudioResource(path);
player.play(resource, { seek: 60000, volume: 1 });
const resource = createAudioResource(path);
player.play(resource, { seek: 60000, volume: 1 });
...

AudioPlayer#stop method

so like it mentions that the player will be destroyed so what am confused is like how? I checked the source and all I see is the resource being destroyed, not the player and if it is actually destroying the player, does it mean I have to make a new AudioPlayer?

Multiple Voice Connections

Is it possible to have multiple voice connection subscription for a guild? if so, how would I go about retrieving a particular/specific connection that I'd like to terminate?

connection destroy, disconnect

Is it possible to destroy the connection with disconnecting the bot, I’ve a command that play an audio < 35 sec What I’m doing right now that i just use the same connection, but then i will see the warn...

Connecting to voice connecting

Hi, I would like to know if it's possible to connect to the voice connection (to only send audio) only with the token, endpoint and sessionId, I don't have access to the bot token (this is how the project I'm doing works) and the client sends me those informations (as well with client id and etc) I couldn't find anywhere to do that, is that possible, if not, is there any other way to do it?...

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 from...

discord opus error

Hi I'm facing a node gyp error when trying to install discordjs/opus in nodejs v 16.9.1

Audio stops playing

Yeah, it's another one of these posts and at this point I've pretty much lost all patience with this broken library. The issue is that, after joining a voice channel and beginning to stream audio (from an arbitrary URL source) for a bit, the bot will stop producing any sound and appears to have stopped transmitting audio to discord altogether (based on Network Activity dropping to nil). That's not the worse part....

AudioPlayerStatus.Idle

the bot dose not do anything when it finish

retrieving a subscribed AudioPlayer on a voice connection

I mean we have the function getVoiceConnection that retrieves a VoiceConnection for a guild so is there any way to get an AudioPlayer from it so that I can pause/resume/destroy it from any command?

No Audio Is Played

Hello! I'm new to using @discordjs/voice so I'm hoping I'm just missing something simple. I'm trying to get my bot to play a local audio file within voice. The bot joins the channel, but doesn't make a noise. This is the relevant code:...

player.on(AudioPlayerStatus.Idle, async () => {} not emitting when the song finished

[email protected]
player.on(AudioPlayerStatus.Idle, async () => {}
player.on(AudioPlayerStatus.Idle, async () => {}
...