Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions ImageMagick: convert-im6.q16: not authorized #1204

Closed
filiptronicek opened this issue May 29, 2020 · 2 comments
Closed

GitHub actions ImageMagick: convert-im6.q16: not authorized #1204

filiptronicek opened this issue May 29, 2020 · 2 comments
Labels
bug Issues that report (apparent) bugs.

Comments

@filiptronicek
Copy link

I wanted to setup moviepy as a small experiment on GitHub actions, but I stumbled upon a problem with moviepy locating the binary.
image

Although it's a part of the preinstalled suite of dependencies and programs on GitHub's Ubuntu distribution (complete list here). moviepy cannot locate it.
Is this a GitHub or a moviepy problem?

Expected Behavior

The program renders the video just fine (tested on my Windows 10 PC.)

Actual Behavior

image

Specifications

  • Python Version: 3.8
  • Moviepy Version: 1.0.3
  • Platform Name: Ubuntu Linux
  • Platform Version: 18.04.4 LTS
@filiptronicek filiptronicek added the bug Issues that report (apparent) bugs. label May 29, 2020
@tburrows13
Copy link
Collaborator

That error message is just a generic one for when ImageMagick fails. The other 2 lines indicate that it can find ImageMagick, but it is failing due to #693 (comment).

You can add the following line into your install script to fix it:

  cat /etc/ImageMagick-6/policy.xml | sed 's/none/read,write/g' | sudo tee /etc/ImageMagick-6/policy.xml

I suppose that you might need to replace 6 with 7.

@filiptronicek
Copy link
Author

That did the trick! Thanks! Works just fine with version six.

@tburrows13 tburrows13 changed the title Unspecified Imagemagick binary in GitHub actions GitHub actions: convert-im6.q16: not authorized May 29, 2020
@tburrows13 tburrows13 changed the title GitHub actions: convert-im6.q16: not authorized GitHub actions ImageMagick: convert-im6.q16: not authorized May 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issues that report (apparent) bugs.
Projects
None yet
Development

No branches or pull requests

2 participants