Creatomate API
Cloud API for generating and editing video and images programmatically. Creatomate uses a JSON-based format called RenderScript to define video/image compositions.
Quick Start
const Creatomate = require('creatomate');
const client = new Creatomate.Client('YOUR_API_KEY');
// Render from a template
const renders = await client.render({
templateId: 'your-template-id',
modifications: {
'Title': 'Hello World',
'Text 1': 'Dynamic content here'
}
});
[Description truncada. Veja o README completo no GitHub.]