Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
DownloadError: ERROR: ffprobe or avprobe not found. Please install one. #5895
Comments
|
Can you run Side note: don't run youtube-dl as the root user, we try to make it as safe as possible but you should avoid running programs as root if possible. |
|
I will change the user after I get it working. I believe I can run ffprobe and avprobe
|
|
Post the full output you get when running |
|
this is bizzar when I run that it gives me this..
|
|
Post the output you get when running this python script (which I guess is similar to what you are using): from youtube_dl import YoutubeDL
ydl_opts = {
'verbose': True,
'format': 'bestaudio/best', # choice of quality
'outtmpl': 'example.%(ext)s', # name the location
'noplaylist' : True, # only download single song, not playlist
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
}],
}
ydl = YoutubeDL(ydl_opts)
ydl.download(['https://www.youtube.com/watch?v=PEVUFKfpp5Y'])If that works but you script still fails, post the code you are running and its output so that we can try to reproduce it. |
|
Ok, figured it out. It was working fine when it was not in supervisor. Once I put the app under supervisor the issue started. Didn't click until just now. In the supervisor config file I had to add the location of ffprobe in ontop of the virtual env directory as seen below.
Thank you so much for your help! |
I keep getting this error DownloadError: ERROR: ffprobe or avprobe not found. Please install one.
I am on ubuntu 14.04 and I already did this
and ffmpeg is showing as installed
Here is the input I'm putting into the youtube-dl
And here is the error
Any help would be appreciated