“错误:未找到FFMPEG”:使用简单的Discord Bot时出错 [英] "Error: FFMPEG not found": Error with simple Discord Bot

查看:166
本文介绍了“错误:未找到FFMPEG”:使用简单的Discord Bot时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用安装了Node.js和npm的Windows(64位)。
在我的项目文件中,我运行了以下命令:

I'm using Windows (64-bit) with Node.js and npm installed. In my project file, I have run the following commands:

npm init
npm install discord.js --save
npm install ffmpeg --save

现在我刚创建了代码一个基本的机器人这里是主要代码。
我在此列出重要信息:

Now i just created the code for a basic bot here is the main code. I list here the important:

 if (message.content === '!play' && message.member.roles.has(message.guild.roles.find("name", config.role_name).id)) {
    if (!message.member.voiceChannel) return log("?");
       message.member.voiceChannel.join().then(function (connection){      
       });
 }

然后,在Discord中,我说以下内容:

Then, in Discord, I say the following:

 [1517932146]  Musik bot loaded
    (node:35760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): Error: FFMPEG not found

我已经测试了以下内容:

I have already tested the following:


  • 重新安装所有内容

  • 其他需求名称etz

  • 简化代码

所以,如果您有任何想法,请告诉我。谢谢

So if you have any ideas then let me know. Thank you

推荐答案

你需要实际安装ffmpeg, ffmpeg 模块在NPM上只需为ffmpeg的命令行界面导出一个包装器API。

You need to actually install ffmpeg, the ffmpeg module on NPM simply exports a wrapper API for ffmpeg's command-line interface.

你可以下载ffmpeg的二进制文件来自网站或使用软件包管理器(如 apt 在Ubuntu上, brew 或Windows上的 choco ,它通常负责将二进制文件放入 PATH中的目录

You can download ffmpeg's binaries from the website or use a package manager (like apt on Ubuntu, brew on Mac or choco on Windows) which usually takes care of dropping the binaries into a directory that is present in the PATH.

这篇关于“错误:未找到FFMPEG”:使用简单的Discord Bot时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆