You are reading an old version of the documentation (v3.0.3). For the latest version see https://matplotlib.org/stable/api/_as_gen/matplotlib.animation.MovieWriterRegistry.html
Version 3.0.3
matplotlib
Fork me on GitHub

matplotlib.animation.MovieWriterRegistry

class matplotlib.animation.MovieWriterRegistry[source]

Bases: object

Registry of available writer classes by human readable name.

ensure_not_dirty()[source]

If dirty, reasks the writers if they are available

is_available(name)[source]

Check if given writer is available by name.

Parameters:
name : str
Returns:
available : bool
list()[source]

Get a list of available MovieWriters.

register(name)[source]

Decorator for registering a class under a name.

Example use:

@registry.register(name)
class Foo:
    pass
reset_available_writers()[source]

Reset the available state of all registered writers

set_dirty()[source]

Sets a flag to re-setup the writers.