We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07fbb8 commit 39d481dCopy full SHA for 39d481d
doc/users/whats_new/fix_avconv.rst
@@ -0,0 +1,3 @@
1
+AVConv writer is back
2
+---------------------
3
+Correct a bug that prevented detection of AVconv for matplotlib.animation.
lib/matplotlib/animation.py
@@ -616,7 +616,7 @@ def output_args(self):
616
def _handle_subprocess(cls, process):
617
_, err = process.communicate()
618
# Ubuntu 12.04 ships a broken ffmpeg binary which we shouldn't use
619
- if 'Libav' in err.decode():
+ if 'Libav' in err.decode() and 'AVConv' not in cls.__name__:
620
return False
621
return True
622
0 commit comments