-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
FIX: ffmpeg logging level #10739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX: ffmpeg logging level #10739
Conversation
I would add at least a big fat comment warning "at higher log levels, this will crash after too many frames". Or just disable logging altogether there, depends on your POV. Or move it to e.g. |
I think the former - users should be able to see the |
a449c39
to
91654d2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
at least it's an improvement...
91654d2
to
a65b9c1
Compare
lib/matplotlib/axes/_axes.py
Outdated
@@ -2218,7 +2218,7 @@ def bar(self, *args, **kwargs): | |||
if yerr is not None: | |||
yerr = self.convert_yunits(yerr) | |||
|
|||
x, height, width, y, linewidth = np.broadcast_arrays( | |||
x, height, width, y, ll = np.broadcast_arrays( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does the linewidth in the bar plot have to do with the ffmpeg animation? And if this is changed, why is linewidth
used in the remainder of the function, and not ll
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh shoot. Somehow injected a test in there. Thanks for catching that. I'll fix ASAP.
5bbacd8
to
a408aff
Compare
Mac build is the one that failed (at pip not available) |
Not going to worry about OSX right now. |
Backport PR #10739 on branch v2.2.x
the logging was killing my memory buffer: matplotlib/matplotlib#10739
PR Summary
Apparently closes #10729 (thanks @cgohlke and @anntzer )
PR Checklist