Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Pass AbstractMovieWriter.setup kwargs through Animation.save#28822
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
QuLogic wants to merge1 commit intomatplotlib:mainChoose a base branch fromQuLogic:anim-save-kwargs
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Uh oh!
There was an error while loading.Please reload this page.
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.
The idea is fundamentally reasonable. However, I think we should do a bit:
- in
AbstractMovieWriter.setup
docstring clarify that subclasses may specify additional parameters. - optional: should we require/recommend that these additional parameters are kwonly? Should dpi even be kwonly? If either we should migrate our own
setup()
APIs via@make_keyword_only
. - To be checked are there third-party movie writers and would we need to take extra cater for compatibility. - I'm very much considering putting all the additional setup paramters in a single
setup_kwargs
parameter - or if we want to be very explicitwriter_setup_kwargs
. This better rhymes with the existingsavefig_kwargs
and generally, with the patternfoo_kwargs
(or sometimes spelledfoo_kw
) that we use to pass on a set of kwargs for a specific purpose.
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR summary
This is a rebase of#11863 with the addition of a test. That PR was closed because#16082 defaulted animations to save intermediate files to a temporary directory. However, that didn't actually fix the ability to pass arguments to
setup
, which means the idea from#16082 to "just passframe_prefix
if you want to save the temporary files" was never possible.PR checklist