KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
bodymovin-to-avd
★ 36
Open GitHub ↗
Bodymovin to AVD converter
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
bodymovin-to-smil
:
bodymovin to smil
lottie-idea
:
Android Studio and IntelliJ IDEA viewer plugin for Lottie animations
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-avd
?
Download (.md)
# bodymovin-to-avd Bodymovin to AVD converter #Example of usage ````javascript var avd_converter = require('./src/index.js'); var fs = require('fs'); fs.readFile("./exports/jsons/data.json", "utf8", function(error, data){ process.on('unhandledRejection', function(err, promise) { console.error('Unhandled rejection (promise: ', promise, ', reason: ', err, ').'); }); var prom = avd_converter(JSON.parse(data)) prom.then(function(xml){ fs.writeFile("./test.xml", xml, function(err) { if(err) { return console.log(err); } console.log("The file was saved!"); }); }).catch(function(err){ console.log('catch'); }); }) ````