首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >需要帮助才能使Java Script不协调音乐机器人

需要帮助才能使Java Script不协调音乐机器人
EN

Stack Overflow用户
提问于 2017-02-01 23:20:05
回答 1查看 3.3K关注 0票数 1

我试着用这段代码来制作一个不和谐的音乐机器人,但是我得到了一个错误,告诉我我需要ffmpeg,但是我该如何在这段代码中实现它呢?

index.js文件

代码语言:javascript
复制
const Discord = require('discord.js');
const bot = new Discord.Client();
const config = require("./config.json");
const ytdl = require('ytdl-core');

var youtube = require('./youtube.js');


var ytAudioQueue = [];
var dispatcher = null;

bot.on('message', function(message) {
    var messageParts = message.content.split(' ');
    var command = messageParts[0].toLowerCase();
    var parameters = messageParts.splice(1, messageParts.length);

    switch (command) {

        case "-join" : 
        message.reply("Attempting to join channel " + parameters[0]);
        JoinCommand(parameters[0], message);
        break;
    
        case "-play" :
        PlayCommand(parameters.join(" "), message);
        break;

        case "-playqueue":
        PlayQueueCommand(message);
        break;
    }
});


    function PlayCommand(searchTerm) {
        if(bot.voiceConnections.array().length == 0) {
            var defaultVoiceChannel = bot.channels.find(val => val.type === 'voice').name;
            JoinCommand(defaultVoiceChannel);
        }
        youtube.search(searchTerm, QueueYtAudioStream);
    }

    function PlayQueueCommand(message) {
        var queueString = "";

        for(var x = 0; x < ytAudioQueue.length; x++) {
            queueString += ytAudioQueue[x].videoName + ", ";
        }
        queueString = queueString.substring(0, queueString.length - 2);
        message.reply(queueString);
    }

    function JoinCommand(ChannelName) {
        var voiceChannel = GetChannelByName(ChannelName);

        if (voiceChannel) {
            voiceChannel.join();
            console.log("Joined " + voiceChannel.name);
        }
        
        return voiceChannel;
        
    }

    /* Helper Methods */

    function GetChannelByName(name) {
        var channel = bot.channels.find(val => val.name === name);
        return channel;
    }

  

    function QueueYtAudioStream(videoId, videoName) {
        var streamUrl = youtube.watchVideoUrl + videoId;

        if (!ytAudioQueue.length) {
            ytAudioQueue.push(
                {
                    'streamUrl' : streamUrl,
                    'videoName' : videoName
                }
            );
            console.log('Queued audio ' + videoName);
            PlayStream(ytAudioQueue[0].streamUrl);
        }
        else {
            ytAudioQueue.push(
                {
                    'streamUrl' : streamUrl,
                    'videoName' : videoName
                }
            );
        }
        console.log("Queued audio " + videoName);
    }

    function PlayStream(streamUrl) {
        const streamOptions = {seek: 0, volume: 1};

        if (streamUrl) {
            const stream = ytdl(streamUrl, {filter: 'audioonly'});

            if (dispatcher == null) {
                var voiceConnection = bot.voiceConnections.first();

                if(voiceConnection) {
                    console.log("Now Playing " + ytAudioQueue[0].videoname);
                    dispatcher = bot.voiceConnections.first().playStream(stream, streamOptions);

                    dispatcher.on('end', () => {
                        dispatcher = null;
                        PlayNextStreamInQueue();
                    });

                    dispatcher.on('error', (err) => {
                        console.log(err);
                    });
                }
            } else {
                dispatcher = bot.voiceConnections.first().playStream(stream, streamOptions);
            }
            
        }
    }

    function PlayNextStreamInQueue() {
        ytAudioQueue.splice(0, 1);

        if (ytAudioQueue.length != 0) {
            console.log("now Playing " + ytAudioQueue[0].videoName);
            PlayStream(ytAudioQueue[0].streamUrl);
        }
    }


bot.login(config.token);

youtube.js文件

代码语言:javascript
复制
var request = require('superagent');

const API_KEY = "My API KEY";
const WATCH_VIDEO_URL = "https://www.youtube.com/watch?v=";

exports.watchVideoUrl = WATCH_VIDEO_URL;

exports.search = function search(searchKeywords, callback) {
  var requestUrl = 'https://www.googleapis.com/youtube/v3/search' + '?part=snippet&q=' + escape(searchKeywords) + '&key=' + API_KEY;

  request(requestUrl, (error, response) => {
    if (!error && response.statusCode == 200) {

      var body = response.body;
      if (body.items.length == 0) {
        console.log("I Could Not Find Anything!");
        return;
      }
      for (var item of body.items) {
        if (item.id.kind == 'youtube#video') {
          callback(item.id.videoId, item.snippet.title);
          return;
        }
      }
    } else {
      console.log("Unexpected error!");
      return;
    }
  });

  return;

};

当我尝试运行代码时出现错误:

已加入常规

C:\Discord Bot\node_modules\discord.js\src\client\voice\pcm\FfmpegConverterEngine.

js:80

抛出新错误(

^

错误:在您的系统上找不到FFMPEG,因此无法播放音频。请确保FFMPEG已安装并且位于您的路径中。

EN

回答 1

Stack Overflow用户

发布于 2017-02-02 22:24:51

您需要下载/解压缩FFMPEG,并将其作为PATH/系统变量环境变量

确保将其作为系统变量,如下所示:

系统变量应命名为'FFMPEG‘,并应定向到执行(.exe)文件所在的位置。它应该在FFMPEG文件夹中名为'bin‘的文件夹中。

您可以通过google/search在线了解如何为您的特定操作系统添加新的系统/路径变量。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/41983317

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档