我正在制作一个不和谐.js机器人,偶然发现了从YouTube播放流的问题。
第一个流播放完调度程序错误后,出现"流生成速度不够快",并且在我重新启动机器人之前不会播放任何其他流。
我正在使用这些模块:
- 不和谐.js@11.4.0
- ffmpeg@0.0.4
- ffmped-binaries@3.2.2-3
- opusscript@0.0.6
- 年初至今-core@0.25.0
我尝试安装其他版本的 ytdl 核心,但这对我没有帮助。
这是我到目前为止的代码:
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);
}
});
}
我想最简单的解决方法是使用discord.js master / v12-dev
可以通过执行npm i discordjs/discord.js
主版本完全重写语音功能来安装,当然有一些重大更改,但总的来说,来自 ytdl 的stream is not generating fast enough
问题已在 master 中修复。