Discordbot不会使用ytdl-core播放音乐

时间:2018-02-17 00:41:57

标签: javascript node.js discord.js

我输入Discord中的命令来播放音乐和机器人连接,但几秒后从语音频道断开连接而不播放音乐。几天前它工作得很好,但现在它没有,我无法在代码中找到错误。我安装了ffmpeg和opusscript,这样就不会出错。我希望有人可以帮助我:

const Discord = require('discord.js');
const ytdl = require('ytdl-core');
const bot = new Discord.Client();
const prefix = "$";
const token = "";

function play(connection, message){
    var server = servers[message.guild.id];

    server.dispatcher = connection.playStream(ytdl(server.queue[0], {filter: "audioonly"}));

    server.queue.shift();

    server.dispatcher.on("end", function() {
        if(server.queue[0]) play(connection, message);
        else connection.disconnect();
    });
}

var servers = {};

bot.on("ready", function(){
    console.log("Ready");
});

bot.on("message", function(message) {
    if(message.author.equals(bot.user)) return;
    if(!message.content.startsWith(prefix)) return;

    var args = message.content.substring(prefix.length).split(" ");

switch(args[0].toLowerCase()){
    case "play":
        if(!args[1]){
            message.channel.send("Please add a link");
            return;
        }
        if(!message.member.voiceChannel){
            message.channel.send("You have to be in a Voice Channel");
            return;
        }
        if(!servers[message.guild.id]) servers[message.guild.id] = {
            queue: []
        };
        var server = servers[message.guild.id];

        server.queue.push(args[1]);

        if(!message.guild.voiceConnection) message.member.voiceChannel.join().then(function(connection){
            play(connection, message);
        });
        break;
    default:
        message.channel.send("Unknown Command");
        break;
}

});

bot.login(token);

2 个答案:

答案 0 :(得分:0)

Re-watch the video并确保您正确复制了他的代码,如果您已进入项目文件夹中的终端,请键入以下内容:

npm install

这将安装所有缺少的依赖项。 如果您没有安装节点那么做(只需快速谷歌搜索,这很容易)

如果它仍然不起作用,我不知道如何修复它,但考虑到你已经在使用别人的代码,here is another option它远远优于Aeirety音乐机器人。它具有以下功能:

  • 播放|:播放来自YouTube的音频。
  • 跳过[编号]:跳过一首歌曲或多首歌曲,跳过[某个数字],
  • queue:显示当前队列。
  • 暂停:暂停播放音乐。
  • resume:恢复音乐播放。
  • 音量:将播放音量调节在1到200之间。
  • 离开:清除歌曲队列并离开频道。
  • clearqueue:清除歌曲队列。

安装起来也很简单,看看它并考虑它。

答案 1 :(得分:0)

我知道这是一个老问题,但是对于将来遇到这种不幸的人,您要做的就是用npm install --save ytdl-core重新安装ytdl-core模块。是的,就是那样简单而愚蠢……

祝你好运!