@@ -751,7 +751,8 @@ def validate_movie_writer(s):
751751
752752
753753validate_movie_frame_fmt = ValidateInStrings (
754- 'animation.frame_format' , ['png' , 'jpeg' , 'tiff' , 'raw' , 'rgba' ],
754+ 'animation.frame_format' , ['png' , 'jpeg' , 'tiff' , 'raw' , 'rgba' , 'ppm' ,
755+ 'sgi' , 'bmp' , 'pbm' , 'svg' ],
755756 _deprecated_since = "3.3" )
756757validate_axis_locator = ValidateInStrings (
757758 'major' , ['minor' , 'both' , 'major' ], _deprecated_since = "3.3" )
@@ -1495,7 +1496,8 @@ def _convert_validator_spec(key, conv):
14951496 "animation.codec" : validate_string ,
14961497 "animation.bitrate" : validate_int ,
14971498 # Controls image format when frames are written to disk
1498- "animation.frame_format" : ["png" , "jpeg" , "tiff" , "raw" , "rgba" ],
1499+ "animation.frame_format" : ["png" , "jpeg" , "tiff" , "raw" , "rgba" , "ppm" ,
1500+ "sgi" , "bmp" , "pbm" , "svg" ],
14991501 # Additional arguments for HTML writer
15001502 "animation.html_args" : validate_stringlist ,
15011503 # Path to ffmpeg binary. If just binary name, subprocess uses $PATH.
0 commit comments