A framework to work with lottie files and telegram animated stickers (tgs)
Project description
Python Lottie
A Python framework to work with Lottie files and Telegram animated stickers.
Quick start
This section describes some common things you might want to do without having to read the whole README
Installation
pip install lottie
Converting into images
This package provide the script lottie_convert.py
, it's precise location
depends on how you installed python-lottie.
For PNG, GIF, and Webp you have to install cairosvg
and pillow
.
To render a still image:
lottie_convert.py input_file.json output_file.png --frame 30
To render an animated image (GIF or WebP):
lottie_convert.py input_file.json output_file.webp
A list of supported formats is described in the section "Supported Formats" below.
Turning GIF and such into animations
The lottie format is for vector graphics, this means converting raster images usually doesn't work too well.
That said, python-lottie does support a few different algorithms to import raster images, the process is a bit slow for larger images but use it with caution.
To use the potrace vectorization library, install the extras tagged as "trace".
Once set up, just invoke lottie_convert.py
using the vectorization algorithm
lottie_convert.py input_file.gif output_file.json --bmp-mode trace
For pixel art, you can use the pizel
algorithm, which doesn't require potrace
lottie_convert.py input_file.gif output_file.json --bmp-mode pixel
If you are ok with keeping raster images as such, you can use the default mode
lottie_convert.py input_file.gif output_file.json
Converting Telegram animated stickers (tgs)
This format is natively supported by python lottie, but telegram doesn't support all of the features supported by lottie (see the section labeled "Supported After Effects Features" for details).
When converting from tgs, nothing special is needed as it's handled as a lottie animation.
lottie_convert.py AnimatedSticker.tgs output_file.webp
But when converting into animated stickers, you might end up with a file that
Telegram doesn't recognize. To help with this, by default lottie_convert.py
will scale the animation to be the right size and framerate.
It will also print out any warnings related to unsupported features.
Everything else works like any other conversion:
lottie_convert.py input_file.json output_file.tgs
If you want to see the same warnings for an existing tgs file use tgs_check.py
tgs_check.py AnimatedSticker.tgs
Creating animations from scratch
See the examples at https://mattbas.gitlab.io/python-lottie/examples.html and read the available lottie objects at https://mattbas.gitlab.io/python-lottie/group__Lottie.html#details
Features
Here is a list of features of the lottie python framework:
- Loading compressed TGS and uncompressed lottie JSON
- Manipulation of lottie objects
- Simple animation presets (eg: shake, linear bounce)
- Bezier path animations (eg: follow path, making paths appear and disappear)
- Wave distortion animation (eg: for flags)
- Pseudo-3D rotations
- Animation easing functions
- Inverse Kinematic solver
- Pretty printing and comparison of lottie files
- Rendering text as shapes
Supported Formats
Format | Import | Import Animated | Export | Export Animated |
---|---|---|---|---|
lottie | ๐ | ๐ | ๐ | ๐ |
tgs | ๐ | ๐ | ๐ | ๐ |
SVG | ๐ | ๐ | ๐ | โ๏ธ |
SVGz | ๐ | ๐ | ๐ | โ๏ธ |
PNG | ๐ | ๐[^frames] | ๐ | โ๏ธ |
Synfig | ๐ | ๐ | ๐ | ๐ |
WebP | ๐ | ๐ | ๐ | ๐ |
dotLottie | ๐ | ๐ | ๐ | ๐ |
PostScript | โ๏ธ | โ๏ธ | ๐ | โ๏ธ |
โ๏ธ | โ๏ธ | ๐ | โ๏ธ | |
BMP | ๐ | ๐[^frames] | โ๏ธ | โ๏ธ |
GIF | ๐ | ๐ | ๐ | ๐ |
TIFF | ๐ | ๐ | ๐ | ๐ |
MP4 | โ๏ธ | โ๏ธ | ๐ | ๐ |
AVI | โ๏ธ | โ๏ธ | ๐ | ๐ |
WebM | โ๏ธ | โ๏ธ | ๐ | ๐ |
HTML | โ๏ธ | โ๏ธ | ๐ | ๐ |
Blender | ๐[^blend] | ๐[^blend] | โ๏ธ | โ๏ธ |
Krita | ๐ | โ๏ธ | โ๏ธ | โ๏ธ |
[^frames]: Importing multiple images as frames
[^blend]: Conversion available as a Blender addon
Scripts
python-lottie provides several scripts to convert or manage lottie animations. For full documentation see https://mattbas.gitlab.io/python-lottie/scripts.html
The main one is lottie_convert.py
, which can be used to convert between the supported formats.
There is also the script lottie_gui.py
which provides a graphical interface for lottie playback.
Installation
Downloads
The packages for the various applications listed below can be downloaded from here:
Synfig
There's a Synfig studio plugin to export telegram stickers. To install, just copy (or symlink) ./addons/synfig/pylot-exporter into the synfig plugin directory. You might have to copy ./lib/lottie in there as well.
Inkscape
There are some import/export extensions for inkscape.
Just copy (or symlink) the files under ./addons/inkscape to the inkscape extension directory. On my system that's ~/.config/inkscape/extensions/ but you can double check from Inkscape: Edit > Preferences... > System > User extensions
Note that the extensions require Python 3.
If they are run with a python 2 interpreter, they will try to run themselves using python3
.
They also need the lottie framework to be in the python path, otherwise you can manually set the path on the import/export dialogues.
See also https://inkscape.org/~mattia.basaglia/%E2%98%85tgslottie-importexport
Blender
There are some export addons for blender.
Copy (or symlink) the files under ./addons/blender to the Blender extension directory.
On my system that's ~/.config/blender/2.80/scripts/addons/ you can check available paths through the Blender Python console:
import addon_utils; print(addon_utils.paths())
You can also install the addon from Blender using the zipfile created by make
.
Pip
You can install from pypi:
pip install lottie
from git:
pip install git+https://gitlab.com/mattbas/python-lottie.git@master
for the source directory:
pip install /path/to/the/sources # this is the path where setup.py is located
Requirements
Python 3.
Optional Requirements
In order to provide lean installations, this framework doesn't have dependencies for its core functionality.
To add support for extra formats or advanced functionality, you can install additional packages.
These requirements are declared as extra in the Pypi package, follows a table listing dependencies and features
Packages | Extra | Feature |
---|---|---|
pillow |
images | To load image assets |
glaxnimate |
PNG | To export PNG |
cairosvg |
To export PNG / PDF / PS | |
glaxnimate , pillow |
GIF | To export GIF and animated WebP |
fonttools |
text | To render text as shapes |
grapheme |
emoji | Adding emoji support to text rendering |
cairosvg , numpy , Python OpenCV 2 |
video | To export video |
glaxnimate |
trace | To convert raster images into vectors |
QScintilla |
GUI | Grafical user interface utilities |
coverage |
To show unit test coverage, used optionally by test.sh |
If intalling from pip, you can install optional requirements like so:
pip install lottie[GIF]
The above example will ensure cairosvg
and pillow
are installed.
For more details see https://pip.pypa.io/en/latest/reference/pip_install/#examples.
For convenience, an additional extra requirements is defined, so you can install all dependencies at once:
pip install lottie[all]
If you are using python-lottie from source you can run
pip install -r requirements.txt
Which will install all the requirements (except for pypotrace, as that package has some issues)
Telegram Animated Stickers
I had to reverse engineer the format because Telegram couldn't be bothered providing the specs.
A TGS file is a gzip compressed JSON, the JSON data is described here: https://mattbas.gitlab.io/python-lottie/group__Lottie.html#lottie_json
Making your own exporters converters
Lottie format
If you can get the source image into lottie format, that's 90% of the work done.
I've created Python classes based the format schema and after effects documentation, which output the correct json. Eg:
foo = lottie.Animation()
# ...
json.dump(foo.to_dict(), output_file)
I'm also creating a proper documentation for the format, see: https://mattbas.gitlab.io/tgs/group__Lottie.html#details
TGS changes
Nothing major, just ensure the root JSON object has tgs: 1
Gzipping
The tgs file is the JSON described above compressed into a gzip, and renamed to .tgs
License
AGPLv3+ https://www.gnu.org/licenses/agpl-3.0.en.html
Credits
Copyright 2019 (C) Mattia Basaglia
Links
Documentation
https://mattbas.gitlab.io/python-lottie/index.html
Code
https://gitlab.com/mattbas/python-lottie/
Chat
Download
https://mattbas.gitlab.io/python-lottie/downloads.html
Here you can download packages for pip, blender, and inkscape before they are released. These packages always have the latest features but they might be unstable.
Issues
You can report any issue in the tracker on gitlab:
https://gitlab.com/mattbas/python-lottie/-/issues
Supported After Effects Features
Compare with http://airbnb.io/lottie/#/supported-features
Legend
- ๐ Supported
- โ Unknown / untested
- โ๏ธ Not supported
- python-lottie refers to this framework in general
- Telegram refers to features supported by telegram animated stickers
- SVG refers to the exported SVG images from this framework, features supported here will also reflect on other formats (such as video, png, and similar)
Telegram doesn't support everything in the Lottie format. https://core.telegram.org/animated_stickers lists some things that are unsupported but what is listed there isn't correct.
There are several things marked as unsupported in telegram animated stickers that are actually supported.
Shapes | python-lottie | Telegram | SVG |
---|---|---|---|
Shape | ๐ | ๐ | ๐ |
Ellipse | ๐ | ๐ | ๐ |
Rectangle | ๐ | ๐ | ๐ |
Rounded Rectangle | ๐ | ๐ | ๐ |
Polystar | ๐ | ๐[^unsuported] | ๐ |
Group | ๐ | ๐ | ๐ |
Trim Path (individually) | ๐ | ๐ | ๐ |
Trim Path (simultaneously) | ๐ | ๐ | ๐ |
Fills | python-lottie | Telegram | SVG |
Color | ๐ | ๐ | ๐ |
Opacity | ๐ | ๐ | ๐ |
Radial Gradient | ๐ | ๐ | ๐ |
Linear Gradient | ๐ | ๐ | ๐ |
Fill Rule | ๐ | ๐ | ๐ |
Strokes | python-lottie | Telegram | SVG |
Color | ๐ | ๐ | ๐ |
Opacity | ๐ | ๐ | ๐ |
Width | ๐ | ๐ | ๐ |
Line Cap | ๐ | ๐ | ๐ |
Line Join | ๐ | ๐ | ๐ |
Miter Limit | ๐ | ๐ | ๐ |
Dashes | ๐ | ๐ | ๐ |
Gradient | ๐ | ๐[^unsuported] | ๐ |
Transforms | python-lottie | Telegram | SVG |
Position | ๐ | ๐ | ๐ |
Position (separated X/Y) | ๐ | ๐ | ๐ |
Scale | ๐ | ๐ | ๐ |
Rotation | ๐ | ๐ | ๐ |
Anchor Point | ๐ | ๐ | ๐ |
Opacity | ๐ | ๐ | ๐ |
Parenting | ๐ | ๐ | ๐ |
Skew | ๐ | โ๏ธ[^bug] | ๐ |
Auto Orient | ๐ | ๐[^unsuported] | ๐ |
Interpolation | python-lottie | Telegram | SVG |
Linear Interpolation | ๐ | ๐ | ๐ |
Bezier Interpolation | ๐ | ๐ | ๐ |
Hold Interpolation | ๐ | ๐ | ๐ |
Spatial Bezier Interpolation | ๐ | ๐ | ๐ |
Rove Across Time | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Masks | python-lottie | Telegram | SVG |
Mask Path | ๐ | ๐[^unsuported] | ๐ |
Mask Opacity | ๐ | ๐[^unsuported] | ๐ |
Add | ๐ | ๐[^unsuported] | โ๏ธ |
Subtract | ๐ | ๐[^unsuported] | โ๏ธ |
Intersect | ๐ | ๐[^unsuported] | ๐ |
Lighten | ๐ | ๐[^unsuported] | โ๏ธ |
Darken | ๐ | ๐[^unsuported] | โ๏ธ |
Difference | ๐ | ๐[^unsuported] | โ๏ธ |
Expansion | ๐ | ๐[^unsuported] | โ๏ธ |
Feather | ๐ | ๐[^unsuported] | โ๏ธ |
Mattes | python-lottie | Telegram | SVG |
Alpha Matte | ๐ | โ๏ธ[^dok] | ๐ |
Alpha Inverted Matte | ๐ | โ๏ธ[^dok] | โ๏ธ |
Luma Matte | ๐ | โ๏ธ[^dok] | ๐ |
Luma Inverted Matte | ๐ | โ๏ธ[^dok] | โ๏ธ |
Merge Paths | python-lottie | Telegram | SVG |
Merge | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Add | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Subtract | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Intersect | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Exclude Intersection | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Layer Effects | python-lottie | Telegram | SVG |
Fill | ๐ | โ๏ธ | โ๏ธ |
Stroke | ๐ | โ๏ธ | โ๏ธ |
Tint | ๐ | โ๏ธ | โ๏ธ |
Tritone | ๐ | โ๏ธ | โ๏ธ |
Levels Individual Controls | ๐ | โ๏ธ | โ๏ธ |
Text [^text] | python-lottie | Telegram | SVG |
Glyphs | ๐ | โ๏ธ | โ๏ธ |
Fonts | ๐ | โ๏ธ | โ๏ธ |
Transform | ๐ | โ๏ธ | โ๏ธ |
Fill | ๐ | โ๏ธ | ๐ |
Stroke | ๐ | โ๏ธ | โ๏ธ |
Tracking | โ๏ธ | โ๏ธ | โ๏ธ |
Anchor point grouping | โ๏ธ | โ๏ธ | โ๏ธ |
Text Path | โ๏ธ | โ๏ธ | โ๏ธ |
Per-character 3D | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Units) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Based on) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Amount) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Shape) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Ease High) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Ease Low) | โ๏ธ | โ๏ธ | โ๏ธ |
Range selector (Randomize order) | โ๏ธ | โ๏ธ | โ๏ธ |
expression selector | โ๏ธ | โ๏ธ | โ๏ธ |
Other | python-lottie | Telegram | SVG |
Expressions | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
Images | ๐ | โ๏ธ | ๐ |
Precomps | ๐ | ๐ | ๐ |
Time Stretch | ๐ | โ๏ธ | โ๏ธ |
Time remap | ๐ | โ๏ธ[^dok] | ๐ |
Markers | โ๏ธ | โ๏ธ[^untested] | โ๏ธ |
3D Layers | ๐ | โ๏ธ[^untested] | โ๏ธ |
Repeaters | ๐ | ๐[^unsuported] | ๐ |
Solids | ๐ | ๐[^unsuported] | ๐ |
[^text]: Note that python-lottie offers an alternative to lottie text layers, and can render text as shapes, so that is supported everywhere
[^untested]: Marked as unsuported but I haven't tested it
[^bug]: Not listed as unsupported, maybe a bug?
[^dok]: Works on telegram desktop
[^unsuported]: Marked as unsupported
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.