This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

node-transloadit

0.0.4 • Public • Published

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

Contributions from:

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

Readme

Keywords

none

Package Sidebar

Install

npm i node-transloadit

Weekly Downloads

1

Version

0.0.4

License

none

Last publish

Collaborators

  • gmwils