-
Updated
Aug 30, 2020 - Python
#
animation
Here are 263 public repositories matching this topic...
Animation engine for explanatory math videos
Official pytorch implementation of the paper: "SinGAN: Learning a Generative Model from a Single Natural Image"
animation
gan
official
super-resolution
harmonization
single-image-super-resolution
single-image
singan
image-edit
single-image-animation
single-image-generation
arbitrery-sizes
-
Updated
Aug 30, 2020 - Python
Generating faces with deconvolution networks
-
Updated
Feb 1, 2020 - Python
reinecke
commented
Jul 14, 2020
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
-
Updated
May 23, 2018 - Python
-
Updated
Aug 4, 2019 - Python
-
Updated
Sep 19, 2016 - Python
Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.
visualization
python
math
animation
physics
numpy
modeling
chaos
nonlinear
fractal
logistic
pandas
systems
ipynb
matplotlib
phase-diagram
numba
fractals
bifurcation-diagram
cobweb-plot
-
Updated
Apr 1, 2020 - Python
A python package for animating plots build on matplotlib.
-
Updated
Dec 19, 2019 - Python
TouchDesigner toxes and small projects
-
Updated
Sep 15, 2020 - Python
An awesome workflow for animated SVGs with Adobe Illustrator
-
Updated
Feb 3, 2018 - Python
Animating Arbitrary Objects via Deep Motion Transfer
-
Updated
Jan 7, 2020 - Python
decorating: Literally decorating your terminal with decorators
-
Updated
Dec 27, 2017 - Python
1
huguesdevimeux
commented
Sep 8, 2020
Bsically the title. this method is useless. See the code and the comment :
https://github.com/ManimCommunity/manim/blob/5dd7bfe644e57d428deaad18f0ab8d3772d1ad01/manim/animation/animation.py#L115-L120
Data visualisation in Python based on OptiX 7.1 ray tracing framework.
visualization
real-time
animation
gpu
cuda
plot
nvidia
raytracer
generative-art
raytracing
pathtracing
ray-tracing
3d-graphics
rtx
optix
path-tracing
-
Updated
Sep 18, 2020 - Python
manim-kindergarten's communal repository
-
Updated
Sep 2, 2020 - Python
AnimAide is a free add-on for Blender that has some helpful tools for animation.
-
Updated
May 6, 2020 - Python
A Blender add-on for importing a sequence of OBJ meshes as frames
-
Updated
Jul 22, 2020 - Python
Software that can autocomplete sketches as the user starts drawing.
image
computer-vision
animation
sketch
image-processing
draw
image-editing
generative-adversarial-network
official
interactive-interface
autocomplete-sketches
autocompletions
-
Updated
Nov 7, 2019 - Python
An open-source Maya plugin for controlling Industrial Robots. Written in Python 2.7.
-
Updated
Sep 17, 2020 - Python
ICface: Interpretable and Controllable Face Reenactment Using GANs
-
Updated
Jul 10, 2020 - Python
generative algorithm
-
Updated
Dec 10, 2016 - Python
FreeCAD workbench to create exploded views and animations of assemblies
-
Updated
Jun 14, 2019 - Python
Improve this page
Add a description, image, and links to the animation topic page so that developers can more easily learn about it.
Add this topic to your repo
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.