I have been trying to get it to work for days.
ImageMagick it's installed, i can run convert from the terminal. it also works when i run python scripts using wand. but when i try to create text
txt = TextClip("hello word", fontsize=70, color='black').set_duration(5)
I get this error:
FileNotFoundError: [Errno 2] No such file or directory: 'unset'
During handling of the above exception, another exception occurred:
OSError: MoviePy Error: creation of None failed because of the following error:
[Errno 2] No such file or directory: 'unset'.
.This error can be due to the fact that ImageMagick is not installed on your computer, or (for Windows users) that you didn't specify the path to the ImageMagick binary in file conf.py, or.that the path you specified is incorrect
it use to work but now it doesn't maybe it's the OS update.
can somebody help me?
I got it to work on my local machine with this:
from moviepy.config import change_settings
change_settings({"IMAGEMAGICK_BINARY": "/usr/local/Cellar/imagemagick/6.9.6-2/bin/convert"})
but i bet it will give me problems when i deploy
Most helpful comment
I got it to work on my local machine with this:
but i bet it will give me problems when i deploy