首页 > 解决方案 > 从 url discord.js v13 播放音频

问题描述

如何使用 discord.js v13 从 url 播放音频。

我使用了这段代码,但它没有用。

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)

标签: javascriptnode.jsdiscorddiscord.js

解决方案


推荐阅读