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