How to install FFMPEG for your discord bot?

Multi tool use
up vote
0
down vote
favorite
I want to make my discord bot to play music , but i keep getting "FFMPEG not found" error.
My bot is mostly made out of pings so i won't upload that part. The music code should be this one.
const Discord = require('discord.js');
const bot = new Discord.Client();
var bm = message.content.toLowerCase()
bot.on('message',(message) => {
if (bm == "pray") {
var VC = message.member.voiceChannel;
if (!VC)
return message.reply("You are not in the church my son.")
VC.join()
.then(connection => {
const dispatcher = connection.playFile('d:/mp3.MP3');
dispatcher.on("end", end => {VC.leave()});
})
.catch(console.error); )
P.S. : I know that i should import the FFMPEG somehow because i have it downloaded already. But i don't know how.
ffmpeg discord.js
add a comment |
up vote
0
down vote
favorite
I want to make my discord bot to play music , but i keep getting "FFMPEG not found" error.
My bot is mostly made out of pings so i won't upload that part. The music code should be this one.
const Discord = require('discord.js');
const bot = new Discord.Client();
var bm = message.content.toLowerCase()
bot.on('message',(message) => {
if (bm == "pray") {
var VC = message.member.voiceChannel;
if (!VC)
return message.reply("You are not in the church my son.")
VC.join()
.then(connection => {
const dispatcher = connection.playFile('d:/mp3.MP3');
dispatcher.on("end", end => {VC.leave()});
})
.catch(console.error); )
P.S. : I know that i should import the FFMPEG somehow because i have it downloaded already. But i don't know how.
ffmpeg discord.js
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to make my discord bot to play music , but i keep getting "FFMPEG not found" error.
My bot is mostly made out of pings so i won't upload that part. The music code should be this one.
const Discord = require('discord.js');
const bot = new Discord.Client();
var bm = message.content.toLowerCase()
bot.on('message',(message) => {
if (bm == "pray") {
var VC = message.member.voiceChannel;
if (!VC)
return message.reply("You are not in the church my son.")
VC.join()
.then(connection => {
const dispatcher = connection.playFile('d:/mp3.MP3');
dispatcher.on("end", end => {VC.leave()});
})
.catch(console.error); )
P.S. : I know that i should import the FFMPEG somehow because i have it downloaded already. But i don't know how.
ffmpeg discord.js
I want to make my discord bot to play music , but i keep getting "FFMPEG not found" error.
My bot is mostly made out of pings so i won't upload that part. The music code should be this one.
const Discord = require('discord.js');
const bot = new Discord.Client();
var bm = message.content.toLowerCase()
bot.on('message',(message) => {
if (bm == "pray") {
var VC = message.member.voiceChannel;
if (!VC)
return message.reply("You are not in the church my son.")
VC.join()
.then(connection => {
const dispatcher = connection.playFile('d:/mp3.MP3');
dispatcher.on("end", end => {VC.leave()});
})
.catch(console.error); )
P.S. : I know that i should import the FFMPEG somehow because i have it downloaded already. But i don't know how.
ffmpeg discord.js
ffmpeg discord.js
edited Aug 8 at 17:06
asked Aug 8 at 16:58


Alex
43
43
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
accepted
I have found an answer here , at http://blog.gregzaal.com/how-to-install-ffmpeg-on-windows/ . Here you can see how to add the FFMPEG to download , unzip , path and use it.
add a comment |
up vote
0
down vote
You should install all ffmpeg-related modules from NPM, and then define it (like, const ffmpeg = require("ffmpeg-extra")
.
This worked for me.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
I have found an answer here , at http://blog.gregzaal.com/how-to-install-ffmpeg-on-windows/ . Here you can see how to add the FFMPEG to download , unzip , path and use it.
add a comment |
up vote
0
down vote
accepted
I have found an answer here , at http://blog.gregzaal.com/how-to-install-ffmpeg-on-windows/ . Here you can see how to add the FFMPEG to download , unzip , path and use it.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I have found an answer here , at http://blog.gregzaal.com/how-to-install-ffmpeg-on-windows/ . Here you can see how to add the FFMPEG to download , unzip , path and use it.
I have found an answer here , at http://blog.gregzaal.com/how-to-install-ffmpeg-on-windows/ . Here you can see how to add the FFMPEG to download , unzip , path and use it.
answered Aug 9 at 15:47


Alex
43
43
add a comment |
add a comment |
up vote
0
down vote
You should install all ffmpeg-related modules from NPM, and then define it (like, const ffmpeg = require("ffmpeg-extra")
.
This worked for me.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
You should install all ffmpeg-related modules from NPM, and then define it (like, const ffmpeg = require("ffmpeg-extra")
.
This worked for me.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
up vote
0
down vote
You should install all ffmpeg-related modules from NPM, and then define it (like, const ffmpeg = require("ffmpeg-extra")
.
This worked for me.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You should install all ffmpeg-related modules from NPM, and then define it (like, const ffmpeg = require("ffmpeg-extra")
.
This worked for me.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Nov 7 at 6:11


sme
2,13611129
2,13611129
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Nov 7 at 6:05
lazycouchdoge
1
1
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
lazycouchdoge is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51751964%2fhow-to-install-ffmpeg-for-your-discord-bot%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
HU0o,H TQwUwrzvk2W0gXn,Ic,XqWx0e8,eFCayPYZxe4x,SjkiJM1A olPZ9uFP831Zj5AlFfEcCJ