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.
"ffprobe not found" when using 'ffmpeg_location' on binary #13498
Comments
|
ffprobe is a standalone binary. The solution is to install ffprobe. |
What is the purpose of your issue?
I'm using sl4a to run a python script on Android which uses the YoutubeDL API. I want to download from youtube and convert to .mp3, thus I've taken a prebuilt binary from [https://github.com/WritingMinds/ffmpeg-android] , put it in the script root directory path and used 'ffmpeg_location' in the ydl_opts dict (code and error pictures below).
The problem is it gives me a "ffprobe not found" error. Isn't the ffprobe included in the ffmpeg binary? What could be a solution?
Picture when setting the wrong ffmpeg binary file path:

Here I've set the correct path and the error dissapeard meaning YoutubeDL got the ffmpeg.

Thank you.