如何使用Discord Bot播放音频文件

时间:2020-02-13 02:14:02

标签: javascript discord.js

我正在尝试让我的机器人在加入vc时播放音频文件。它可以加入,但是在尝试播放音频文件时出现错误。我已经尝试过调试很多次了,但是我真的不确定到底出了什么问题。

(node:13128) UnhandledPromiseRejectionWarning: TypeError [ERR_INVALID_ARG_TYPE]: The "file" argument must be of type string. Received type object
    at validateString (internal/validators.js:107:11)
    at normalizeSpawnArguments (child_process.js:407:3)
    at Object.spawn (child_process.js:543:16)
msg.member.voiceChannel.join().then(connection =>{

                            const dispatcher = connection.playFile('C:/audio/audio.mp3');
                            dispatcher.on("end", end => {msg.member.voiceChannel.leave()});
                        })

0 个答案:

没有答案