@@ -801,21 +801,21 @@ def __call__(self, s):
801
801
# Path to FFMPEG binary. If just binary name, subprocess uses $PATH.
802
802
'animation.ffmpeg_path' : ['ffmpeg' , six .text_type ],
803
803
804
- ## Additional arguments for ffmpeg movie writer (using pipes)
805
- 'animation.ffmpeg_args' : ['' , validate_stringlist ],
804
+ # Additional arguments for ffmpeg movie writer (using pipes)
805
+ 'animation.ffmpeg_args' : [[] , validate_stringlist ],
806
806
# Path to AVConv binary. If just binary name, subprocess uses $PATH.
807
807
'animation.avconv_path' : ['avconv' , six .text_type ],
808
808
# Additional arguments for avconv movie writer (using pipes)
809
- 'animation.avconv_args' : ['' , validate_stringlist ],
809
+ 'animation.avconv_args' : [[] , validate_stringlist ],
810
810
# Path to MENCODER binary. If just binary name, subprocess uses $PATH.
811
811
'animation.mencoder_path' : ['mencoder' , six .text_type ],
812
812
# Additional arguments for mencoder movie writer (using pipes)
813
- 'animation.mencoder_args' : ['' , validate_stringlist ],
813
+ 'animation.mencoder_args' : [[] , validate_stringlist ],
814
814
# Path to convert binary. If just binary name, subprocess uses $PATH
815
815
'animation.convert_path' : ['convert' , six .text_type ],
816
816
# Additional arguments for mencoder movie writer (using pipes)
817
817
818
- 'animation.convert_args' : ['' , validate_stringlist ]}
818
+ 'animation.convert_args' : [[] , validate_stringlist ]}
819
819
820
820
821
821
if __name__ == '__main__' :
0 commit comments