Animation engine for explanatory math videos
-
Updated
Aug 30, 2020 - Python
{{ message }}
Animation engine for explanatory math videos
Official pytorch implementation of the paper: "SinGAN: Learning a Generative Model from a Single Natural Image"
Generating faces with deconvolution networks
When the CMX parser finds an EDL rate mismatch, it reports 0.000000 instead of the rate the parser was using:
$ python3
Python 3.7.7 (default, Mar 10 2020, 15:43:03)
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import opentimelineio as otio
>>> otio.adapters.read_from_file("tests/sample_data/25fps.edl")
Trace
a generative algorithm
Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.
A python package for animating plots build on matplotlib.
TouchDesigner toxes and small projects
An awesome workflow for animated SVGs with Adobe Illustrator
Animating Arbitrary Objects via Deep Motion Transfer
decorating: Literally decorating your terminal with decorators
Data visualisation in Python based on OptiX 7.1 ray tracing framework.
manim-kindergarten's communal repository
AnimAide is a free add-on for Blender that has some helpful tools for animation.
A Blender add-on for importing a sequence of OBJ meshes as frames
Software that can autocomplete sketches as the user starts drawing.
An open-source Maya plugin for controlling Industrial Robots. Written in Python 2.7.
ICface: Interpretable and Controllable Face Reenactment Using GANs
generative algorithm
FreeCAD workbench to create exploded views and animations of assemblies
Some Python code to make GIFs from graph algos
Add a description, image, and links to the animation topic page so that developers can more easily learn about it.
To associate your repository with the animation topic, visit your repo's landing page and select "manage topics."
FFMPEG supports a "video file name" of
image-%04d.png, and moviepy accepts this inVideoFileClip()which is great. But unfortunately it assumes 25 fps, and I don't see any way to change that. I can callclip=clip.set_fps(24)but that doesn't change the duration - I think it just skips frames.It would be great if
VideoFileClipcould accept an optionalfpsarg for this case.