Socket
Socket
Sign inDemoInstall

@api.video/nodejs-sdk

Package Overview
Dependencies
37
Maintainers
3
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @api.video/nodejs-sdk

Nodejs SDK for api.video


Version published
Weekly downloads
183
decreased by-26.21%
Maintainers
3
Install size
3.00 MB
Created
Weekly downloads
 

Readme

Source

badge

badge

badge

api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.

api.video NodeJS SDK

DEPRECATION WARNING: this SDK will soon be deprecated and will no longer be maintained. It has been replaced by the NodeJS API client. Please use it instead.

Scrutinizer Code Quality Build Status

The api.video web-service helps you put video on the web without the hassle. This documentation helps you use the corresponding NodeJS client.

Installation

npm install @api.video/nodejs-sdk

Usage

const apiVideo = require('@api.video/nodejs-sdk');

(async () => {
  try {
    // Create client for Production and authenticate
    const client = new apiVideo.Client({ apiKey: 'xxx' });

    // Create and upload a video ressource
    const video = await client.videos.upload('test/data/small.webm', { title: 'Course #4 - Part B' });
    console.log(video);
  } catch (e) {
    console.error(e);
  }
})();

See sandbox.spec.js for more usage examples.

Full API

/**
 * VIDEO
 */
const client = new apiVideo.Client({ apiKey: 'xxx' });

// Show a video
client.videos.get(videoId);

// Show a video status
client.videos.getStatus(videoId);

// List or search videos
client.videos.search(parameters = {});

// Create video properties
client.videos.create(title, properties = {});

// Upload a video media file
// Create a video, if videoId is null
client.videos.upload(source, properties = {}, videoId = null);

// Create a video by downloading it from a third party
client.videos.download(source, title, properties = {});

// Update video properties
client.videos.update(videoId, properties);

// Set video public
client.videos.makePublic(videoId);

// Set video private
client.videos.makePrivate(videoId);

// Delete video (file and data)
client.videos.delete(videoId);

// Delegated upload (generate a token for someone to upload a video into your account)
result = client.tokens.generate(); // string(3): "xyz"
result.then(function(token) {
  // ...then upload from anywhere without authentication:
  //  curl https://ws.api.video/upload?token=xyz -F file=@video.mp4
});

/**
 * VIDEO THUMBNAIL
 */
// Upload a thumbnail for video
client.videos.uploadThumbnail(source, videoId);

// Update video's thumbnail by picking timecode
client.videos.updateThumbnailWithTimecode(videoId, timecode);

/**
 * VIDEO CAPTIONS
 */
// Get caption for a video
client.videos.captions.get(videoId, language);

// Get all captions for a video
client.videos.captions.getAll(videoId);

// Upload a caption file for a video (.vtt)
client.videos.captions.upload(source, properties);


// Set default caption for a video
client.videos.captions.updateDefault(videoId, language, isDefault);

// Delete video's caption
client.videos.captions.delete(videoId, language);

/**
 * VIDEO CHAPTERS
 */
// Get caption for a video
client.videos.chapters.get(videoId, language);

// Get all chapters for a video
client.videos.chapters.getAll(videoId);

// Upload a chapter file for a video (.vtt)
client.videos.chapters.upload(source, properties);

// Delete video's chapter
client.videos.chapters.delete(videoId, language);

/**
 * PLAYERS
 */
// Get a player
client.players.get(playerId);

// List players
client.players.search(parameters = {});

// Create a player
client.players.create(properties = {});

// Update player's properties
client.players.uploadLogo(source, playerId, link);

// Update player's properties
client.players.update(playerId, properties);

// Delete a player logo
client.players.deleteLogo(playerId);

// Delete a player
client.players.delete(playerId);

/**
 * LIVE
 */
// Show a live
client.lives.get(liveStreamId);

// List or search lives
client.lives.search(parameters = {});

// Create live properties
client.lives.create(name, properties = {});

// Update live properties
client.lives.update(liveStreamId, properties);

// Delete live (file and data)
client.lives.delete(liveStreamId);

/**
 * LIVE THUMBNAIL
 */
// Upload a thumbnail for live
client.lives.uploadThumbnail(source, liveStreamId);

/**
 * ANALYTICS
 */
// Get video analytics between period
client.analyticsVideo.get(videoId, period);

// Get live analytics between period
client.analyticsLive.get(liveStreamId, period);

// Get analytics session events
client.analyticsLive.get(sessionId, parameters);

Full API Details Implementation

Videos

FunctionParametersDescriptionRequiredAllowed Values
getvideoId(string)Video identifier:heavy_check_mark:-
getStatusvideoId(string)Video identifier:heavy_check_mark:-
search----
-parameters(object)Search parameters:x:
  • currentPage(int)
  • pageSize(int)
  • sortBy(string)
  • sortOrder(string)
  • keyword(string)
  • tags(string|array(string))
  • metadata(array(string))
create----
-title(string)Video title:heavy_check_mark:-
-properties(object)Video properties:x:
  • description(string)
  • tags(array(string))
  • playerId(string)
  • metadata(array(
    array(
    'key' => 'Key1',
    'value' => 'value1'
    ),
    array(
    'key' => 'Key2',
    'value' => 'value2'
    )
    )
  • panoramic(bool)
  • public(bool)
  • mp4Support(bool)
upload----
-source(string)Video media file:heavy_check_mark:-
-properties(object)Video properties:x:
  • title(string)
  • description(string)
  • tags(array(string))
  • playerId(string)
  • metadata(array(
    array(
    'key' => 'Key1',
    'value' => 'value1'
    ),
    array(
    'key' => 'Key2',
    'value' => 'value2'
    )
    )
-videoId(string)Video identifier:x:-
uploadThumbnail----
-source(string)Image media file:heavy_check_mark:-
-videoId(string)Video identifier:heavy_check_mark:-
updateThumbnailWithTimeCode----
-videoId(string)Video identifier:heavy_check_mark:-
-timecode(string)Video timecode:heavy_check_mark:00:00:00.00
(hours:minutes:seconds.frames)
update----
-videoId()stringVideo identifier:heavy_check_mark:-
-properties(object)Video properties:heavy_check_mark:
  • title(string)
  • description(string)
  • tags(array(string))
  • playerId(string)
  • metadata(array(
    array(
    'key' => 'Key1',
    'value' => 'value1'
    ),
    array(
    'key' => 'Key2',
    'value' => 'value2'
    )
    )
  • panoramic(bool)
  • public(bool)
  • mp4Support(bool)
makePublicvideoId(string)Video identifier:heavy_check_mark:-
makePrivatevideoId(string)Video identifier:heavy_check_mark:-
deletevideoId(string)Video identifier:heavy_check_mark:-

Players

FunctionParametersDescriptionRequiredAllowed Values
getplayerId(string)Player identifier:heavy_check_mark:-
createproperties(object)Player properties:x:
  • shapeMargin(int)
  • shapeRadius(int)
  • shapeAspect(string)
  • shapeBackgroundTop(string)
  • shapeBackgroundBottom(string)
  • text(string)
  • link(string)
  • linkHover(string)
  • linkActive(string)
  • trackPlayed(string)
  • trackUnplayed(string)
  • trackBackground(string)
  • backgroundTop(string)
  • backgroundBottom(string)
  • backgroundText(string)
  • enableApi(bool)
  • enableControls(bool)
  • forceAutoplay(bool)
  • hideTitle(bool)
uploadLogo----
-source(string)Logo file:heavy_check_mark:-
-playerId(string)Player identifier:heavy_check_mark:-
-link(string)Logo link:heavy_check_mark:-
search----
-parameters(object)Search parameters:x:
  • currentPage(int)
  • pageSize(int)
  • sortBy(string)
  • sortOrder(string)
update----
-playerId(string)Player identifier:heavy_check_mark:-
-properties(object)Player properties:heavy_check_mark:
  • shapeMargin(int)
  • shapeRadius(int)
  • shapeAspect(string)
  • shapeBackgroundTop(string)
  • shapeBackgroundBottom(string)
  • text(string)
  • link(string)
  • linkHover(string)
  • linkActive(string)
  • trackPlayed(string)
  • trackUnplayed(string)
  • trackBackground(string)
  • backgroundTop(string)
  • backgroundBottom(string)
  • backgroundText(string)
  • enableApi(bool)
  • enableControls(bool)
  • forceAutoplay(bool)
  • hideTitle(bool)
deleteLogoplayerId(string)Player identifier:heavy_check_mark:-
deleteplayerId(string)Player identifier:heavy_check_mark:-

Captions

FunctionParametersDescriptionRequiredAllowed Values
get----
-videoId(string)Video identifier:heavy_check_mark:-
-language(string)Language identifier:heavy_check_mark:2 letters (ex: en, fr)
getAllvideoId(string)Video identifier:heavy_check_mark:-
upload----
-source(string)Caption file:heavy_check_mark:-
-properties(string)Caption properties:heavy_check_mark:
  • videoId(string)
  • language(string - 2 letters)
updateDefault- (object)---
-videoIdVideo identifier:heavy_check_mark:-
-language (string)Language identifier:heavy_check_mark:2 letters (ex: en, fr)
-isDefault (string)Set default language:heavy_check_mark:true/false
delete----
-videoIdVideo identifier:heavy_check_mark:-
-language (string)Language identifier:heavy_check_mark:2 letters (ex: en, fr)

Chapters

FunctionParametersDescriptionRequiredAllowed Values
get----
-videoId(string)Video identifier:heavy_check_mark:-
-language(string)Language identifier:heavy_check_mark:2 letters (ex: en, fr)
getAllvideoId(string)Video identifier:heavy_check_mark:-
upload----
-source(string)Chapter file:heavy_check_mark:-
-properties(string)Chapter properties:heavy_check_mark:
  • videoId(string)
  • language(string - 2 letters)
delete----
-videoIdVideo identifier:heavy_check_mark:-
-language (string)Language identifier:heavy_check_mark:2 letters (ex: en, fr)

Lives

FunctionParametersDescriptionRequiredAllowed Values
getliveStreamId(string)Live identifier:heavy_check_mark:-
search----
-parameters(object)Search parameters:x:
  • currentPage(int)
  • pageSize(int)
  • sortBy(string)
  • sortOrder(string)
create----
-name(string)Live name:heavy_check_mark:-
-properties(object)Live properties:x:
  • record(boolean)
  • playerId(string)
uploadThumbnail----
-source(string)Image media file:heavy_check_mark:-
-liveStreamId(string)Live identifier:heavy_check_mark:-
update----
-liveStreamId()stringLive identifier:heavy_check_mark:-
-properties(object)Live properties:heavy_check_mark:
  • name(string)
  • record(boolean)
  • playerId(string)
deleteliveStreamId(string)Live identifier:heavy_check_mark:-

AnalyticsVideo

FunctionParametersDescriptionRequiredAllowed Values/Format
get----
-videoId(string)Video identifier:heavy_check_mark:-
-period (string)Period research:x:
  • For a day : 2018-01-01
  • For a week: 2018-W01
  • For a month: 2018-01
  • For a year: 2018
  • Date range: 2018-01-01/2018-01-15

AnalyticsLive

FunctionParametersDescriptionRequiredAllowed Values/Format
get----
-liveStreamId(string)Live identifier:heavy_check_mark:-
-period (string)Period research:x:
  • For a day : 2018-01-01
  • For a week: 2018-W01
  • For a month: 2018-01
  • For a year: 2018
  • Date range: 2018-01-01/2018-01-15

AnalyticsSessionEvent

FunctionParametersDescriptionRequiredAllowed Values/Format
get----
-sessionId(string)Session identifier:heavy_check_mark:-
-parameters(array)Search parameters:x:
  • currentPage(int)
  • pageSize(int)

Tokens

FunctionParametersDescriptionRequiredAllowed Values
generate-Token for delegated upload--

Account

FunctionParametersDescriptionRequiredAllowed Values
get-Get account informations (quota, features)--

More on api.video

A full technical documentation is available on https://docs.api.video/

Test

npm run test

You can also run a bunch of commands against your actual sandbox:

API_KEY=xxx npm run test:sandbox

Use the Sandbox API Key and not your production key.

FAQs

Last updated on 08 Dec 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc