@@ -747,7 +747,8 @@ def validate_movie_writer(s):
747747
748748
749749validate_movie_frame_fmt = ValidateInStrings (
750- 'animation.frame_format' , ['png' , 'jpeg' , 'tiff' , 'raw' , 'rgba' ],
750+ 'animation.frame_format' , ['png' , 'jpeg' , 'tiff' , 'raw' , 'rgba' , 'ppm' ,
751+ 'sgi' , 'bmp' , 'pbm' , 'svg' ],
751752 _deprecated_since = "3.3" )
752753validate_axis_locator = ValidateInStrings (
753754 'major' , ['minor' , 'both' , 'major' ], _deprecated_since = "3.3" )
@@ -1491,7 +1492,8 @@ def _convert_validator_spec(key, conv):
14911492 "animation.codec" : validate_string ,
14921493 "animation.bitrate" : validate_int ,
14931494 # Controls image format when frames are written to disk
1494- "animation.frame_format" : ["png" , "jpeg" , "tiff" , "raw" , "rgba" ],
1495+ "animation.frame_format" : ["png" , "jpeg" , "tiff" , "raw" , "rgba" , "ppm" ,
1496+ "sgi" , "bmp" , "pbm" , "svg" ],
14951497 # Additional arguments for HTML writer
14961498 "animation.html_args" : validate_stringlist ,
14971499 # Path to ffmpeg binary. If just binary name, subprocess uses $PATH.
0 commit comments