Я не могу установить node-opus, потому что он выдает код ошибки.
Мой код:
const Discord = require('discord.js');
const client = new Discord.Client();
client.login('my token :)');
client.on('message', message => {
if (!message.guild) return;
if (message.content === '/join') {
if (message.member.voiceChannel) {
message.member.voiceChannel.join()
.then(connection => {
const dispatcher = connection.playFile('./musik/taisonin.mp3');
dispatcher.resume()
dispatcher.on("end", end => {message.memver.voiceChannel.leave()});
});
} else {
message.reply('-');
}
}
});
Кажется, что все работает нормально, пока не попытается начать воспроизведение моего mp3-файла. -> «Ошибка: не удалось найти движок Opus.»
Зависимости:
"@discordjs/opus": "^0.1.0",
"discord.js": "github:discordjs/discord.js#master",
"discord.js-commando": "github:discordjs/Commando",
"ffmpeg-static": "^4.0.1",
"opusscript": "0.0.7"