Play audio from url Discord.js v13

Asked

Viewed 27 times

-1

How do I play audio from a url with Discord.js v13.

I used this code and it didn’t work.

const connection = joinVoiceChannel({
  channelId: voiceChannel.id,
  guildId: message.guild.id,
  adapterCreator: message.guild.voiceAdapterCreator,
})

const player = createAudioPlayer()
connection.subscribe(player)

const resource = createAudioResource(`http://www.site/audio.mp3`)
player.play(resource)
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.