KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
bodymovin-to-smil
★ 42
Open GitHub ↗
bodymovin to smil
Download README (.md)
Explore Similar Repositories
qtlottie
:
QtLottie is a tiny C++ library that can render Adobe® After Effects™ animations exported as JSON with Bodymovin.
AE-Icon
:
:cat: use bodymovin to render some interesting After Effects vector icon
lottie-idea
:
Android Studio and IntelliJ IDEA viewer plugin for Lottie animations
bodymovin-to-avd
:
Bodymovin to AVD converter
Lottie-Noesis
:
Render After Effects animations using NoesisGUI
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
bodymovin-to-smil
?
Download (.md)
# bodymovin-to-smil Bodymovin to SMIL converter ## First version of bodymovin to SMIL It supports basic animations: - masks (additive and intersect) - shapes - solids - texts - precomps - transforms - opacity ### Usage ````javascript var smil_converter = require('bodymovin-to-smil'); var fs = require('fs'); fs.readFile("./data.json", "utf8", function(error, data){ if(data) { smil_converter(JSON.parse(data)) .then(function(xml){ fs.writeFile("./animation.svg", xml, function(err) { if(err) { return console.log(err); } console.log("The file was saved!"); }); }).catch(function(err){ console.log(err); }); } }) ```` ### Keep in mind that not all browsers support SMIL ### current push supports latest version of lottie