@@ -747,7 +747,8 @@ def validate_movie_writer(s):
747
747
748
748
749
749
validate_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' ],
751
752
_deprecated_since = "3.3" )
752
753
validate_axis_locator = ValidateInStrings (
753
754
'major' , ['minor' , 'both' , 'major' ], _deprecated_since = "3.3" )
@@ -1491,7 +1492,8 @@ def _convert_validator_spec(key, conv):
1491
1492
"animation.codec" : validate_string ,
1492
1493
"animation.bitrate" : validate_int ,
1493
1494
# 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" ],
1495
1497
# Additional arguments for HTML writer
1496
1498
"animation.html_args" : validate_stringlist ,
1497
1499
# Path to ffmpeg binary. If just binary name, subprocess uses $PATH.
0 commit comments