我的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);
}
有人知道我在做什么错吗?