当第一首歌曲流结束时,如何解决“流生成速度不够快”错误?

时间:2019-01-09 18:56:23

标签: node.js youtube youtube-api discord discord.js

我当时正在制作一个discord.js机器人,却偶然发现播放youtube流时出现问题。

在第一个流播放完调度程序错误后,出现“流生成速度不够快”的错误,并且在我重新启动bot之前不会播放任何其他流。

我正在使用以下模块:

  • discord.js@11.4.0
  • ffmpeg@0.0.4
  • ffmped-binaries@3.2.2-3
  • opusscript@0.0.6
  • ytdl-core@0.25.0

我尝试安装其他版本的ytdl-core,但这无济于事。

到目前为止,这是我的代码:

const yt = require("ytdl-core");

function play(bot, msg) {
  if (msg.guild.queue.songs.length < 1) {
    msg.guild.queue.playing = false;
    return msg.channel.send("Queue is empty");
  }

  if (!msg.guild.voiceConnection) {
    msg.member.voiceChannel.join().then(con => {
      let song = msg.guild.queue.songs.shift();
      msg.channel.send(`Playing: **${song.title}**!`);
      msg.guild.queue.playing = true;

      msg.guild.queue.dispatcher = con.playStream(yt(song.url))
        .on("end", reason => {
          console.log(reason);
          bot.queue[msg.guild.id].dispatcher.stop();
          setTimeout(play, 500, bot, msg);
        })
        .on("error", err => {
          console.log(err);
          bot.queue[msg.guild.id].dispatcher = null;
          setTimeout(play, 500, bot, msg);
        });
    });
  }
}

exports.run = async(bot, msg, args, ops) => {
  if (!msg.member.voiceChannel) return msg.channel.send("Connect to a voice channel first!");
  if (!args[0]) return msg.channel.send("Specify youtube url first!");
  yt.getInfo(args[0], (err, info) => {
    if (err) return msg.channel.send(err);
    if (!msg.guild.queue) {
      msg.guild.queue = {};
      msg.guild.queue.playing = false;
      msg.guild.queue.songs = [];
      msg.guild.queue.dispatcher = null;
    }
    msg.guild.queue.songs.push({
      url: info.video_url,
      title: info.title,
      requester: msg.author.username
    });
    if (msg.guild.queue.playing) {
      msg.channel.send(`Added **${info.title}** to queue list!`);
    } else {
      play(bot, msg);
    }
  });
}

1 个答案:

答案 0 :(得分:0)

我猜最简单的解决方法是使用discord.js master / v12-dev,只要完成npm i discordjs/discord.js的主版本即可完全改写语音功能,当然,这还有一些重大更改,但是总体而言,ytdl中的stream is not generating fast enough问题已在master中解决。