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

Several ImageMagick related bug fixes #972

Merged
merged 4 commits into from
Oct 1, 2019
Merged

Commits on Jun 14, 2019

  1. write_gif() ImageMagick fix

    Fuzz option "does nothing" to output file due to wrong order of params passsed to ImageMagick, these changes fix this issue.
    KiLLAAA authored Jun 14, 2019
    Configuration menu
    Copy the full SHA
    64798c7 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2019

  1. Merge pull request #1 from KiLLAAA/KiLLAAA-patch-1

    write_gif() ImageMagick fix
    KiLLAAA authored Jun 15, 2019
    Configuration menu
    Copy the full SHA
    1656658 View commit details
    Browse the repository at this point in the history
  2. write_gif() using ImageMagick bugfix

    Fixes Zulko#113
    
    Fixes bug when exporting to gif using ImageMagick with no "opt" parameter specified ie `opt=OptimizePlus` does not produce output file while still stating that [MoviePy] >>>> File /.../test.gif is ready!
    
    test snippet:
    `
    from moviepy.editor import *
    
    clip = (VideoFileClip(infile, audio=False))
    clip.write_gif('test.gif', program= 'ImageMagick', fuzz=40)
    `
    KiLLAAA authored Jun 15, 2019
    Configuration menu
    Copy the full SHA
    6bd227c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2 from KiLLAAA/KiLLAAA-patch-2

    write_gif() using ImageMagick bugfix
    KiLLAAA authored Jun 15, 2019
    Configuration menu
    Copy the full SHA
    c79d323 View commit details
    Browse the repository at this point in the history