Skip to main content

Animate matplotlib figures into videos, in parallel but with efficient caching

Project description

parallel-matplotlib-animation

Create matplotlib animations rendered to video in parallel, with efficient resources reuse.

Installation

pip install parallel-matplotlib-animation

or from a local copy:

git clone https://github.com/sibocw/parallel-matplotlib-animation.git
cd parallel-matplotlib-animation
pip install -e . --config-settings editable_mode=compat

What it does

Renders matplotlib animations by:

  1. Creating a bunch of worker processes, and creating matplotlib resources (plt.Figure, plt.Axes, artists, etc.) once per worker
  2. Distributing frames across workers via a dynamic queue
  3. Rendering the assigned frames from each worker, but updating the data only (without redrawing the whole plot from scratch)
  4. Encoding frames to video with parallel-video-io (FFmpeg under the hood, with automatic GPU/NVENC acceleration when available)

Key design: Figure reuse. In each worker process, setup() runs once to create the figure, then update() modifies it repeatedly. This brings the best of:

  • Serial processing: avoids the overhead of recreating complex layouts for every frame
  • Parallel processing: accomplishes speedup by using multiple CPU cores

Quick example

import numpy as np
import matplotlib.pyplot as plt
from parallel_animate import Animator

# Step 1: Create a child class of parallel_animate.Animator
class WaveAnimation(Animator):

    # Step 2: Define how the plot should be set up
    def setup(self):
        fig, ax = plt.subplots()
        self.x = np.linspace(0, 4 * np.pi, 200)
        (self.line,) = ax.plot(self.x, np.cos(self.x))
        ax.set_xlim(0, 4 * np.pi)
        ax.set_ylim(-1.5, 1.5)
        ax.set_xlabel("x")
        ax.set_ylabel("y")
        ax.set_title("Cosine Wave")
        return fig  # <- return a plt.Figure object

    # Step 3: Define how plot elements should be updated for each frame
    # (given parameters that you define later)
    def update(self, frame_idx, params):
        phase = params["phase"]
        self.line.set_ydata(np.cos(self.x + phase))

# Step 4: Define a list of input parameters, one for each frame
params = [{"phase": 2 * np.pi * i / 60} for i in range(60)]

# Step 5: Make the video in parallel
anim = WaveAnimation()
anim.make_video("wave.mp4", param_by_frame=params, fps=30, num_workers=4)

Usage

This library has a single class: parallel_animate.Animator. To make an animation, you must create your own class inheriting from it and define the following methods:

  • .setup(self): No input argument except self. In this method, you can setup your figure however you like. Just make sure you return the figure you created (i.e. the plt.Figure object). You might want to save the things you created as attributes—axes, return values of plotting calls like plt.plot, etc. This way, you can access and modify them in the update method.
  • .update(self, frame_idx, params): Given the frame index and some input parameters, update the plot elements. params is typically a dictionary of variables, but really it can be any Python object (tuple, a single value, etc.) as long as it's picklable. In this method, you want to call methods like .set_data on the plot elements that you created in setup and saved as attributes.
  • (Optional) __init__(self, ...): You can add any custom logic here. It's handy if you want to create many animation instances using the same custom class, but with different parameters. For example, if you make __init__ accept an input data path, you can do things like anim = RecordingAnimator(dataset_path=...) and animate many datasets in a loop.

Once you have defined your animator class, there is a single method that you need to call that makes the video: .make_video(...). It accepts the following arguments:

  • output_file (Path or str): Output video path
  • param_by_frame (Iterable): Iterable of parameters. Each element is the params argument to be given to the .update call for the corresponding frame. Can be a list, tuple, generator, or any other iterable. Using generators is particularly useful for large data (e.g., bitmaps) to avoid loading everything into memory at once.
  • fps (int): Frame rate of the output video
  • n_frames (int or None): Number of frames to render. If None, use the length of param_by_frame. If param_by_frame does not have __len__ implemented and n_frames is None, the progress bar won't show completion percentage.
  • num_workers (int): Number of worker processes to be spawned. If -1, use all CPU cores. If -2, use all but one CPU cores, etc. If 1, no child process is created and the video is made in the main process itself. Default is -1.
  • video_mode (str): Encoder selection passed to parallel-video-io: "auto" (default) uses the GPU encoder (FFmpeg/NVENC) when a CUDA device is available and falls back to CPU (libx264) otherwise; "gpu" forces NVENC and "cpu" forces libx264. Output is always an H.264 MP4.
  • video_quality (int or None), video_preset (str or None), video_extra_ffmpeg_params (list of str or None): Optional encoding-quality controls forwarded to parallel-video-io. Leave as None to use its sensible defaults.
  • See the docstring for parallel_animate.animator directly for the remaining less commonly used, optional parameters. These control logging, figure reuse, prefetching, etc.

Note: parallel-video-io is currently Linux-only.

Special case: frame params arriving out-of-order in param_by_frame

In some cases, frames in param_by_frame might be out of order. We can handle these scenarios by populating param_by_frame with a special parallel_animate.IndexedFrameParams dataclass, which specifies the frame index that overrides the ordering in param_by_frame. This can be useful when, for example, the animator needs to draw frames that are decoded from a video, and the dataloader for that video might return frames in nondeterministic order because it's parallelized.

See examples/nondeterministic_video_loader.py for details.

Examples

See examples/. Run all of them (except the benchmark) with ./examples/run_all.sh.

simple_wave_animation.py: The example above

multi_panel_animation.py: 5 subplots with different plot types

very_complex_animation.py: 14 subplots with GridSpec layout

nondeterministic_video_loader.py: handling frames that arrive out of order

Performance test

A strong scaling test is implemented in examples/scaling_test.py. Here's the result on my 8-core (16-thread) Intel Core i9-11900K Processor:

See the interactive scaling figure on the documentation site.

The left-most blue dot indicates serial processing with resources reuse. The black line indicates ideal scaling (zero overhead) if all frames are rendered completely independently in parallel (as is the case in all parallel matplotlib animation libraries I found). Blue dots at 1+ workers are what's implemented in this library.

Unit tests

python -m unittest discover -s tests

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

parallel_matplotlib_animation-0.1.3.tar.gz (173.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

parallel_matplotlib_animation-0.1.3-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file parallel_matplotlib_animation-0.1.3.tar.gz.

File metadata

File hashes

Hashes for parallel_matplotlib_animation-0.1.3.tar.gz
Algorithm Hash digest
SHA256 edcd908e0feb9201031f24ca3811837d93256056cfefe6744151157fb900e2da
MD5 722030792387b05649e78156916ca8b3
BLAKE2b-256 050f3f8c1a5f3a122c28c57a20ddda313ea6f09c7898bb12e51e3f2594b8e6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallel_matplotlib_animation-0.1.3.tar.gz:

Publisher: publish.yml on NeLy-EPFL/parallel-matplotlib-animation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file parallel_matplotlib_animation-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for parallel_matplotlib_animation-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8d816d9d3cd83f06ebc72157bb72b05f773609edbe27c15374bb61243cf70115
MD5 53e6b38bfddf7100e3fbc2294336d66a
BLAKE2b-256 3dc08e28c952b1044a2f8a9c2233a78f009064dba8ad95963da903e4165bc8af

See more details on using hashes here.

Provenance

The following attestation bundles were made for parallel_matplotlib_animation-0.1.3-py3-none-any.whl:

Publisher: publish.yml on NeLy-EPFL/parallel-matplotlib-animation

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page