Skip to main content

A Vector-Graphics-Based Animation Library

Project description

Visuscript

Visuscript is a two-dimensional vector-graphics-based animation library for Python, inspired by manim. Visuscript is designed to facilitate the creation of didactic animations for computer-science principles.

[!WARNING] This library is currently in alpha and is subject to breaking changes. APIs, features, and internal structures may change without prior notice. It is not yet recommended for production use. Please use with caution and expect updates that may require adjustments to your code.

Features

  • Create arbitrary 2D graphics with Drawing and Path.
  • Create arbitrary animations by composing primative Animation objects with bundle and sequence.
  • Represent and animate datastructures with AnimatedCollection inheritors.
  • Runtime checks for conflicting animations or updaters with PropertyLocker.
  • (In my opinion) A cleaner API than manim.
  • Strict type compliance with Pyright.

Getting Started

Since Visuscript is still in development and the API is changing, the documentation is incomplete as of now. I will try my best to keep a small set of working examples through these changes in examples/.

I shall now walk you through setup/installation and the creation of a very basic animation.

I have tested this package with Python 3.13.3 on Windows and Mac.

External Dependencies

ffmpeg and librsvg must be installed. You should be able to download these through a package manager. To download with Homebrew, use

brew install ffmpeg
brew install librsvg

Both of these utilities' executables must be in PATH and have names ffmpeg and rsvg-convert.

Package Installation

To install Visuscript, run the following in the root directory of this repository, the directory with setup.py therein:

pip install . 

This will install the Visuscript package alongisde its Python dependencies and the visuscript CLI utility. The utility should be added to PATH automatically when the package is installed. If not, you can use python3 -m visuscript. If all else fails, you can find the script for the CLI at $REPOSITORYHOME/visuscript/cli/visuscript_cli.py.

Hello, World!

For your first visuscript, create a file called hello_world.py and place the following in it:

from visuscript import *
s = Scene()
s << Text("Hello, World!")
s.print()

To run this visuscript, run

visuscript hello_world.py

This will create a new mp4 file called output.mp4, which should be a very boring one frame video with a dark background and text in Arial typeface displaying one of the ancientmost of coding rituals of initiation.

Let us now modify this visuscript to include some animation. Update the file to contain the following and you will get patriotic, rotating, and moving text:

from visuscript import *
s = Scene()
text = Text("Hello, World!")
s << text
s.player << bundle(
    sequence(
        animate_rgb(text.fill, 'red'),
        animate_rgb(text.fill, 'white'),
        animate_rgb(text.fill, 'blue')),
    animate_transform(
        text.transform,
        Transform(
            translation=[100,-30],
            rotation=360,
            scale=2),
        duration = 3))

What next?

Pending the stability of the API and thus the documentation, please refer to the provided examples for further learning.

Future

I plan on seeing this project through to something useful for creating didactic animations. Specifically, Visuscript is planned to have, as time may permit,

  • Base classes for common datastructures to facilitate the animation thereof.
  • Support for the creation of slideshows with embedded animations.
  • Clear and complete documentation.

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

visuscript-0.1.0a3.tar.gz (724.2 kB view details)

Uploaded Source

Built Distribution

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

visuscript-0.1.0a3-py3-none-any.whl (738.6 kB view details)

Uploaded Python 3

File details

Details for the file visuscript-0.1.0a3.tar.gz.

File metadata

  • Download URL: visuscript-0.1.0a3.tar.gz
  • Upload date:
  • Size: 724.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.15

File hashes

Hashes for visuscript-0.1.0a3.tar.gz
Algorithm Hash digest
SHA256 e1e6caffd42a892eeb5ebd1ab1d63244f62f303c386674e284f67a6ab957a7c3
MD5 66f387295162d6db17bad5b8bb232f05
BLAKE2b-256 b82e39019693f3b380966e9335327016cc64316d87924b934422409ec26e2b33

See more details on using hashes here.

File details

Details for the file visuscript-0.1.0a3-py3-none-any.whl.

File metadata

File hashes

Hashes for visuscript-0.1.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 7bc9b87037d98c44b4f5228b0aedc2e8955bea04946ca67b9b09cb4bf0862b3a
MD5 50d68bca626339b18defb36a5f234fed
BLAKE2b-256 7664d1a527f99f6e7664380e30008b9e7dc198ac2dbb87e8102baa4a6c399845

See more details on using hashes here.

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