1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MoviePyで`This error can be due to the fact that ImageMagick is not installed on your computer`と表示された時の対処法 (Ubuntu)

Posted at

ImageMagickをインストールしていない場合

sudo apt install -y imagemagick

security policyに関するエラー

以下のように,security policyに関するエラーが表示されることがある.

convert-im6.q16: attempt to perform an operation not allowed by the security policy `@/tmp/tmpmr4ard3d.txt' @ error/property.c/InterpretImageProperties/3666.
convert-im6.q16: no images defined `PNG32:/tmp/tmpupxr37mx.png' @ error/convert.c/ConvertImageCommand/3258.

これは,@で始まるリソースの作成を許可していないことが原因である.
identify -list policyコマンドで,policy.xmlファイルの場所を確認する.
以下のような1行を見つけたら,コメントアウトする(<!---->で囲う).

<policy domain="path" rights="none" pattern="@*" />

参考:https://github.com/Zulko/moviepy/issues/401#issuecomment-278679961

Version 2.0

Version 2.0でImageMagickを使わない実装を提案しているようである.しかし,ライブラリのメンテナンスが止まっており,リリースされていない.

参考:https://github.com/Zulko/moviepy/issues/1472

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?