Unable to Hear Audio

https://pastebin.com/VZtMgbNE Howdy o/ Been following along with the Discord.JS v14 guide, but I seem to have stumbled somewhere on trying to implement a quick sound effect. I've put dependencies and such in the pastebin, but overall I believe that what I've got should be pretty similar to the guide, so I don't know what's gone wrong. GuildVoiceStates has been included in the intents, and relevant libraries should also be here. The audio file I'm trying to play is only about a second long, since it's supposed to be a sound effect. and the logger states that audioPlayer IS playing audio. I just can't hear it at all. Haven't hit any errors from this, either. Not sure if I'm going crazy/blind/both, so any help at all would be greatly appreciated!
Pastebin
Audio Troubles - Pastebin.com
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
3 Replies
d.js toolkit
d.js toolkitā€¢3w ago
- What are your intents? GuildVoiceStates is required to receive voice data! - Show what dependencies you are using -- generateDependencyReport() is exported from @discordjs/voice. - Try looking at common examples: https://github.com/discordjs/voice-examples. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - āœ… Marked as resolved by OP
Inky
Inkyā€¢3w ago
File path has to be relative to the working directory Usually the directory that contains the package.json file
Lazarus
LazarusOPā€¢3w ago
just moved it (and altered the file path accordingly), but that doesn't seem to have fixed it Hm. Decided to put in the wrong filepath and the logger's still saying the audio player's playing I've removed
const filepath
const filepath
and replaced audioResource with
const audioResource = createAudioResource(join(__dirname, 'audioFiles', 'soundbite.mp3'), {inlineVolume: true});
const audioResource = createAudioResource(join(__dirname, 'audioFiles', 'soundbite.mp3'), {inlineVolume: true});
, but still no dice Alright, did some fiddling with createReadStream and file location, that seems to have done it thanks for the advice @Chewinky šŸ»

Did you find this page helpful?