pythonのライブラリmoviepyを使っていた時のこと
.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
というエラー
ImageMagickをインストールしたのにパスが通ってない模様。
どうもwindowsの人がダメっぽい。
僕はこれで解決しました。
from moviepy.config import change_settings
change_settings({"IMAGEMAGICK_BINARY": r"C:\\Program Files\\ImageMagick-7.0.8-Q16\\magick.exe"})
Sponsored Link