Skip to content

Commit 1fea02c

Browse files
committed
FIX: ffmpeg logging level
1 parent b5391ce commit 1fea02c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def _args(self):
670670
'-r', str(self.fps)]
671671
# Logging is quieted because subprocess.PIPE has limited buffer size.
672672

673-
if (_log.getEffectiveLevel() < logging.DEBUG):
673+
if (_log.getEffectiveLevel() > logging.DEBUG):
674674
args += ['-loglevel', 'quiet']
675675
args += ['-i', 'pipe:'] + self.output_args
676676
return args

0 commit comments

Comments
 (0)