Skip to content

Latest commit

 

History

History
72 lines (47 loc) · 1.39 KB

README.md

File metadata and controls

72 lines (47 loc) · 1.39 KB

Deprecated

Please use the official Transloadit Node SDK.

No further development is planned on this project.

Overview

This is a Node.js client for the Transloadit service, a cloud transcoder for images, video and other content.

Before you get started you'll want to enable API authentication.

Installation

npm install node-transloadit

API

var transloadit = require('node-transloadit');

var client = new transloadit('AUTH_KEY', 'AUTH_SECRET');

client.addStream(name, stream);
client.addFile(file_name, file_path);
client.send(params, ok_callback, fail_callback);

Example

var transloadit = require('node-transloadit');

var client = new transloadit('AUTH_KEY', 'AUTH_SECRET');
var params = {
    steps: {
        ':original': {
            robot: '/http/import',
            url: 'http://example.com/file.mov'
        }
    },
    template_id: 'your_template_id_here'
};

client.send(params, function(ok) {
    // success callback [optional]
    console.log('Success: ' + JSON.stringify(ok));
}, function(err) {
    // error callback [optional]
    console.log('Error: ' + JSON.stringify(err));
});

Authors

  • Geoff van der Meer

Contributions from:

  • Chase Brammer
  • Christian Maniewski
  • Greg Allan
  • Helge Skogly Holm
  • Tejesh Mehta