matplotlib.animation.TimedAnimation
-
class matplotlib.animation.TimedAnimation(fig, interval=200, repeat_delay=None, repeat=True, event_source=None, *args, **kwargs)
[source] -
Bases:
matplotlib.animation.Animation
Animation
subclass for time-based animation.A new frame is drawn every interval milliseconds.
Parameters: -
fig : matplotlib.figure.Figure
-
The figure object that is used to get draw, resize, and any other needed events.
-
interval : number, optional
-
Delay between frames in milliseconds. Defaults to 200.
-
repeat_delay : number, optional
-
If the animation in repeated, adds a delay in milliseconds before repeating the animation. Defaults to
None
. -
repeat : bool, optional
-
Controls whether the animation should repeat when the sequence of frames is completed. Defaults to
True
. -
blit : bool, optional
-
Controls whether blitting is used to optimize drawing. Defaults to
False
.
-
new_frame_seq()
-
Creates a new sequence of frame information.
-
new_saved_frame_seq()
-
Creates a new sequence of saved/cached frame information.
-
save(filename, writer=None, fps=None, dpi=None, codec=None, bitrate=None, extra_args=None, metadata=None, extra_anim=None, savefig_kwargs=None)
-
Saves a movie file by drawing every frame.
Parameters: -
filename : str
-
The output filename, e.g.,
mymovie.mp4
. -
writer : MovieWriter or str, optional
-
A
MovieWriter
instance to use or a key that identifies a class to use, such as 'ffmpeg'. IfNone
, defaults torcParams["animation.writer"]
. -
fps : number, optional
-
Frames per second in the movie. Defaults to
None
, which will use the animation's specified interval to set the frames per second. -
dpi : number, optional
-
Controls the dots per inch for the movie frames. This combined with the figure's size in inches controls the size of the movie. If
None
, defaults torcParams["savefig.dpi"]
. -
codec : str, optional
-
The video codec to be used. Not all codecs are supported by a given
MovieWriter
. IfNone
, default torcParams["animation.codec"]
. -
bitrate : number, optional
-
Specifies the number of bits used per second in the compressed movie, in kilobits per second. A higher number means a higher quality movie, but at the cost of increased file size. If
None
, defaults torcParams["animation.bitrate"]
. -
extra_args : list, optional
-
List of extra string arguments to be passed to the underlying movie utility. If
None
, defaults torcParams["animation.extra_args"]
. -
metadata : Dict[str, str], optional
-
Dictionary of keys and values for metadata to include in the output file. Some keys that may be of use include: title, artist, genre, subject, copyright, srcform, comment.
-
extra_anim : list, optional
-
Additional
Animation
objects that should be included in the saved movie file. These need to be from the samematplotlib.figure.Figure
instance. Also, animation frames will just be simply combined, so there should be a 1:1 correspondence between the frames from the different animations. -
savefig_kwargs : dict, optional
-
Is a dictionary containing keyword arguments to be passed on to the
savefig
command which is called repeatedly to save the individual frames.
Notes
fps, codec, bitrate, extra_args, metadata are used to construct a
MovieWriter
instance and can only be passed ifwriter
is a string. If they are passed as non-None
andwriter
is aMovieWriter
, aRuntimeError
will be raised. -
-
to_html5_video(embed_limit=None)
-
Returns animation as an HTML5 video tag.
This saves the animation as an h264 video, encoded in base64 directly into the HTML5 video tag. This respects the rc parameters for the writer as well as the bitrate. This also makes use of the
interval
to control the speed, and uses therepeat
parameter to decide whether to loop.
-
to_jshtml(fps=None, embed_frames=True, default_mode=None)
-
Generate HTML representation of the animation
-
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.0.0/api/_as_gen/matplotlib.animation.TimedAnimation.html