0.1.0 • Published 9 years ago

vzaar v0.1.0

Weekly downloads
39
License
MIT
Repository
github
Last release
9 years ago

A node.js client for the vzaar API.


vzaar is the go to video hosting platform for business. Affordable, customizable and secure. Leverage the power of online video and enable commerce with vzaar. For more details and signup please visit http://vzaar.com


Installation

npm install 'vzaar'

Usage

var Vzaar = require("vzaar");
var api = new Vzaar.Api({token: "API token", login: "vzaar login"});

If your login and API token are correct, you should be able to fetch your login by calling:

api.whoAmI(function(statusCode, data) {
  console.log(data.vzaar_api.test.login);
});

Endpoints:

Note: api#videoDetails and api#videoList don't require authentication when API public feed option is enabled for given account. api#userDetails and api#accountType are public.

Fetching account's type details:
api.accountType(accountTypeId, callback);
Fetching user's details:
api.userDetails(username, callback);
Getting details from video:
api.videoDetails(videoId, callback, params);
Fetching videos:
api.videoList(login, callback, params);

Example:

api.videoList("username", function(statusCode, data) {
  // callback body
}, { count:, 5, labels: "foo, bar" });
Editing existing video:
api.editVideo(videoId, callback, data);

Example:

api.editVideo(123, function(statusCode, data) {
  // callback body
}, { title:, "my video" });
Deleting video from vzaar:
api.deleteVideo(videoId, callback);
Updating existing video:

Not supported yet

Uploading new video to s3 (video object will not be created on vzaar):
api.s3Upload(pathToFile, callback);
Processing video:
api.processVideo(callback, data);

Example:

api.processVideo(function(statusCode, data) {
  // callback body
}, { guid:, "GUID", title: "my video", profile: 3 });
Upload and process video:
api.uploadAndProcessVideo(path, callback, data);

Example:

api.uploadAndProcessVideo("./path/to/my/video.mp4", function(statusCode, data) {
  // callback body
}, { title: "my video", profile: 3 });
Link Upload:
api.linkUpload(callback, data);

Example:

api.linkUpload(function(statusCode, data) {
  // callback body
}, { encoding_params: { size_id: 3, title: "my title" },
     url: "http://samples.mplayerhq.hu/MPEG-4/turn-on-off.mp4" });
Uploading new thumbnail for video:
api.uploadThumbnail(videoId, callback, data);

Example:

api.uploadThumbnail(12345, function(statusCode, data) {
  // callback body
}, { path:, "./path/to/pic.jpg" });
Generating new thumbnail based on given time value:
api.generateThumbnail(videoId, callback, data);

Example:

api.generateThumbnail(function(statusCode, data) {
  // callback body
}, { time:, 2 });
Adding subtitle to the video (authentication required):
api.addSubtitle(callback, data);

Example:

api.addSubtitle(function(statusCode, data) {
  // callback body
}, { body: "1\n00:00:17,440 --> 00:01:20,375\n ......", language: "en" });
Getting guid and aws signature:
api.signature(callback, params);

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
0.1.0

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago