discord.js and deno
Is the voice library supported with Deno?
I am getting a weird error 'sig is not defined' when trying to run the example code from the docs with Deno.
Thanks for the help!...
forcefully stopping player
hey i just wanted to know if theres a way to forcefully stop playing a resource for example
...
player.play(createAudioResource(audioPath));
player.play(createAudioResource(audioPath));
Problem with play cmd
```if (msg.content.toLowerCase().startsWith(';play')) {
const voiceChannel = msg.member.voice.channel;
if (!voiceChannel) {
return msg.reply('be in vc');...
Voice connection dropping after 3-5 min with ECONNRESET error
Error:
node:events:495
throw er; // Unhandled 'error' event
^
...
Trying to delete messages that don't contain images and it's not deleting them
Why doesn't this work? There are no errors in the console
question about voice receiver
hey im trying to make a voice recorder bot and i just wanted to know the stream of audio which i get from
connection.receiver.speaking.on(start)
event, it only emits when someone is speaking and is "silent" or doesnt emit when no one is speaking, and it only lasts for the duration of someone is speaking right?How to get access to player from different file
So I'm making a music bot and I wanted to have a slash command that makes the bot skip to the next song, but I'm having problems with getting access to the player object created in another file, what can I do?
My two slash commands where one is the function that searches for a song and then plays it and the other one is to skip are in the same directory and I tried foing this:
```javascript
//main command (search.js)
const player = createAudioPlayer();...
How to remove event listener from player
code:
```javascript
async function reproduceSong(interaction, connection, player, channel) {
if (sp > 0) {
try {...
Cannot stream an audio stream on ubuntu 22.04 but on windows.
Hey everyone
I got following issue:
I want to stream an audio stream via URL to a voice channel.
Everything works perfectly fine on Windows, but once I run the code on an ubuntu 22.04 server the audiostream has a readableLength of 0.
If I only play mp3 file that are saved locally it works. The only issue are audio streams via URL....
Tried to make voice listener in a VC and it didn't log anything
```js
const { AudioReceiveStream, joinVoiceChannel, EndBehaviorType, VoiceReceiver } = require('@discordjs/voice');
const { EmbedBuilder } = require('discord.js');
const axios = require("axios").default;
const fs = require("fs");...
piping from udp stream into an audio resource
hello! i've been trying to write a bot to pipe desktop audio to a discord bot over udp (i use linux so this is my jank workaround to not having screen share audio), and i've settled on using dgram to open a udp socket and running ffmpeg locally to push to it (the full command is
ffmpeg -f pulse -i default -f opus "udp://127.0.0.1:3756"
, and the local ip is fine for now since both the stream and bot are running on the same machine).i so i need a muisc slash command and i need it to wrck i can give my code but it dos not wrck
if you can fix pls tell me code const { SlashCommandBuilder } = require('@discordjs/builders');
const { joinVoiceChannel, createAudioPlayer, createAudioResource, AudioPlayerStatus } = require('@discordjs/voice');
const ytdl = require('ytdl-core');
const command = {...