Python – “FFMPEG Binary Not Found” python

“FFMPEG Binary Not Found” python… here is a solution to the problem.

“FFMPEG Binary Not Found” python

I installed the MoviePy package using pip. Whenever I import MoviePy, I get the following error:

---------------------------------------------------------------------------
OSError                                   Traceback (most recent call last)
<ipython-input-1-3137d113b348> in <module>()
      6 import os
      7 import math
----> 8 from moviepy.editor import VideoFileClip
      9 from IPython.display import HTML
     10 get_ipython().magic('matplotlib inline')

C:\Users\manch_000\Anaconda3\lib\site-packages\moviepy\editor.py in <module>()
     20 # Clips
     21 
---> 22 from .video.io.VideoFileClip import VideoFileClip
     23 from .video.io.ImageSequenceClip import ImageSequenceClip
     24 from .video. VideoClip import VideoClip, ImageClip, ColorClip, TextClip

C:\Users\manch_000\Anaconda3\lib\site-packages\moviepy\video\io\VideoFileClip.py in <module>()
      1 import os
      2 
----> 3 from moviepy.video.VideoClip import VideoClip
      4 from moviepy.audio.io.AudioFileClip import AudioFileClip
      5 from moviepy. Clip import Clip

C:\Users\manch_000\Anaconda3\lib\site-packages\moviepy\video\VideoClip.py in <module>()
     19 
     20 import moviepy.audio.io as aio
---> 21 from .io.ffmpeg_writer import ffmpeg_write_image, ffmpeg_write_video
     22 from .io.ffmpeg_reader import ffmpeg_read_image
     23 from .io.ffmpeg_tools import ffmpeg_merge_video_audio

C:\Users\manch_000\Anaconda3\lib\site-packages\moviepy\video\io\ffmpeg_writer.py in <module>()
     17 from tqdm import tqdm
     18 
---> 19 from moviepy.conf import FFMPEG_BINARY
     20 from moviepy.tools import verbose_print
     21 

C:\Users\manch_000\Anaconda3\lib\site-packages\moviepy\conf.py in <module>()
     59         FFMPEG_BINARY = 'ffmpeg.exe'
     60     else:
---> 61         raise IOError("FFMPEG binary not found. Try installing MoviePy"
     62                       " manually and specify the path to the binary in"
     63                       " the file conf.py")

OSError: FFMPEG binary not found. Try installing MoviePy manually and specify the path to the binary in the file conf.py

I

downloaded the FFMPEG file, but I don’t know to specify the path in conf.py.
Does it help?

Solution

I ran into this issue when trying to use PythonVideoConverter

My steps to finally fix this are:

pip installs ffmpeg

Then you have to download the ffmpeg executable separately. The source code can be found here:

http://ffmpeg.org/

I actually used the pre-built binaries for Windows provided here:

https://github.com/BtbN/FFmpeg-Builds/releases

The line that uses PythonVideoConverter is:

from converter import Converter

conv = Converter()

Add the absolute path of the executable file as an input parameter to Converter(), i.e., :

ffmpegPath = r"c:\...\ffmpeg.exe"

ffprobePath = r"c:\...\ffprobe.exe"

from converter import Converter

conv = Converter(ffmpegPath, ffprobePath)

EDIT: This is done on Windows 10 using Python 3.7.4. I used the Win64-GPL version of ffmpeg.

Related Problems and Solutions