Bot加入频道但不播放歌曲

时间:2019-09-28 21:53:30

标签: javascript node.js discord.js voice

我的discord.js机器人加入了频道,但是没有播放歌曲,我有作品,ffmpeg和ytdl的安装。这是我的代码:

 if (message.content.startsWith(prefix+'play')) {
      const streamOptions = { seek: 0, volume: 1 };
      let video = args[1]
      message.member.voiceChannel.join().then(connection => {
            const stream = ytdl(args[1], { filter : 'audioonly' });
            const dispatcher = connection.playStream(stream, streamOptions);
       })
        .catch(console.error);
  }

有人知道我在做什么错吗?

0 个答案:

没有答案
相关问题