discord.js 不播放音频文件

2022-01-10 00:00:00 node.js javascript discord.js

我正在尝试播放音频文件,但由于某种原因它没有播放任何内容,它在机器人连接后立即触发 end 事件而不是 start 事件到语音频道.

I am trying to play an audio file but, for some reason it's not playing anything, it's firing end event instead of start event, right after the bot is connected to voice channel.

client.on('message', message => {
      if(message.content.startsWith('!play')) {

      if(!message.member.voiceChannel) return message.channel.send('connect to voice channel first');

      message.member.voiceChannel.join()
        .then(connection => { 

            console.log("Joined voice channel!");

            const dispatcher = connection.playFile(require("path").join(__dirname, './myfile.mp3'));

            dispatcher.on('start', () => { //not working
                dispatcher.setVolume(0.70);
                console.log("Playing");
            }); 

            dispatcher.on('error', (err) => console.log(err)); //no errors

            dispatcher.on('end', end => { //working fine
                console.log("Finished");
                console.log("End: " + end);
                message.member.voiceChannel.leave()
            });
        });

}});

推荐答案

我从 node-modules 中删除了 ffmpeg-binaries 并安装了 ffmpeg使用 sudo apt 现在工作正常.问题是,我安装了这两个库.

I removed ffmpeg-binaries from node-modules and installed ffmpeg using sudo apt and it's working fine now. The problem was that, i had both of these libraries installed.

相关文章