@@ -323,7 +323,7 @@ def validate_hinting(s):
323323 ['xelatex' , 'lualatex' , 'pdflatex' ])
324324
325325validate_movie_writer = ValidateInStrings ('animation.writer' ,
326- ['ffmpeg' , 'ffmpeg_file' , 'mencoder' , 'mencoder_file' ])
326+ ['ffmpeg' , 'ffmpeg_file' , 'mencoder' , 'mencoder_file' , 'imagemagick_file' ])
327327
328328validate_movie_frame_fmt = ValidateInStrings ('animation.frame_format' ,
329329 ['png' , 'jpeg' , 'tiff' , 'raw' , 'rgba' ])
@@ -621,6 +621,8 @@ def __call__(self, s):
621621 'animation.ffmpeg_args' : ['' , validate_stringlist ], # Additional arguments for ffmpeg movie writer (using pipes)
622622 'animation.mencoder_path' : ['mencoder' , str ], # Path to FFMPEG binary. If just binary name, subprocess uses $PATH.
623623 'animation.mencoder_args' : ['' , validate_stringlist ], # Additional arguments for mencoder movie writer (using pipes)
624+ 'animation.convert_path' : ['convert' , str ], # Path to convert binary. If just binary name, subprocess uses $PATH
625+ 'animation.convert_args' : ['' , validate_stringlist ], # Additional arguments for mencoder movie writer (using pipes)
624626}
625627
626628if __name__ == '__main__' :
0 commit comments