GithubHelp home page GithubHelp logo

aikusuma / api.video-nodejs-client Goto Github PK

View Code? Open in Web Editor NEW

This project forked from apivideo/api.video-nodejs-client

0.0 0.0 0.0 21.46 MB

The official Node.js client library for api.video

Home Page: https://api.video

License: MIT License

TypeScript 100.00%

api.video-nodejs-client's Introduction

badge   badge   badge

api.video Node.js client

api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.

Table of contents

Project description

api.video's Java Node.js is a lightweight client built in TypeScript that streamlines the coding process. Chunking files is handled for you, as is pagination and refreshing your tokens.

Getting started

Installation

With npm:

npm install @api.video/nodejs-client --save

...or with yarn:

yarn add @api.video/nodejs-client

Migration

If you're coming from @api.video/nodejs-sdk make sure to read our Migration guide first.

Development

To build and compile the typescript sources to javascript use:

npm install
npm run build

Code sample

const ApiVideoClient = require('@api.video/nodejs-client');

(async () => {
    try {
        const client = new ApiVideoClient({ apiKey: "YOUR_API_KEY" });

        // create a video
        const videoCreationPayload = {
            title: "Maths video", // The title of your new video.
            description: "A video about string theory.", // A brief description of your video.
        };
        const video = await client.videos.create(videoCreationPayload);

        // upload a video file into the video container
        await client.videos.upload(video.videoId, "my-video-file.mp4");
    } catch (e) {
        console.error(e);
    }
})();

Documentation

API Endpoints

CaptionsApi

Method Description HTTP request
upload() Upload a caption POST /videos/{videoId}/captions/{language}
get() Retrieve a caption GET /videos/{videoId}/captions/{language}
update() Update a caption PATCH /videos/{videoId}/captions/{language}
delete() Delete a caption DELETE /videos/{videoId}/captions/{language}
list() List video captions GET /videos/{videoId}/captions

ChaptersApi

Method Description HTTP request
upload() Upload a chapter POST /videos/{videoId}/chapters/{language}
get() Retrieve a chapter GET /videos/{videoId}/chapters/{language}
delete() Delete a chapter DELETE /videos/{videoId}/chapters/{language}
list() List video chapters GET /videos/{videoId}/chapters

LiveStreamsApi

Method Description HTTP request
create() Create live stream POST /live-streams
get() Retrieve live stream GET /live-streams/{liveStreamId}
update() Update a live stream PATCH /live-streams/{liveStreamId}
delete() Delete a live stream DELETE /live-streams/{liveStreamId}
list() List all live streams GET /live-streams
uploadThumbnail() Upload a thumbnail POST /live-streams/{liveStreamId}/thumbnail
deleteThumbnail() Delete a thumbnail DELETE /live-streams/{liveStreamId}/thumbnail

PlayerThemesApi

Method Description HTTP request
create() Create a player POST /players
get() Retrieve a player GET /players/{playerId}
update() Update a player PATCH /players/{playerId}
delete() Delete a player DELETE /players/{playerId}
list() List all player themes GET /players
uploadLogo() Upload a logo POST /players/{playerId}/logo
deleteLogo() Delete logo DELETE /players/{playerId}/logo

RawStatisticsApi

Method Description HTTP request
listLiveStreamSessions() List live stream player sessions GET /analytics/live-streams/{liveStreamId}
listSessionEvents() List player session events GET /analytics/sessions/{sessionId}/events
listVideoSessions() List video player sessions GET /analytics/videos/{videoId}

UploadTokensApi

Method Description HTTP request
createToken() Generate an upload token POST /upload-tokens
getToken() Retrieve upload token GET /upload-tokens/{uploadToken}
deleteToken() Delete an upload token DELETE /upload-tokens/{uploadToken}
list() List all active upload tokens. GET /upload-tokens

VideosApi

Method Description HTTP request
create() Create a video POST /videos
upload() Upload a video POST /videos/{videoId}/source
uploadWithUploadToken() Upload with an upload token POST /upload
get() Retrieve a video GET /videos/{videoId}
update() Update a video PATCH /videos/{videoId}
delete() Delete a video DELETE /videos/{videoId}
list() List all videos GET /videos
uploadThumbnail() Upload a thumbnail POST /videos/{videoId}/thumbnail
pickThumbnail() Pick a thumbnail PATCH /videos/{videoId}/thumbnail
getStatus() Retrieve video status GET /videos/{videoId}/status

WatermarksApi

Method Description HTTP request
upload() Upload a watermark POST /watermarks
delete() Delete a watermark DELETE /watermarks/{watermarkId}
list() List all watermarks GET /watermarks

WebhooksApi

Method Description HTTP request
create() Create Webhook POST /webhooks
get() Retrieve Webhook details GET /webhooks/{webhookId}
delete() Delete a Webhook DELETE /webhooks/{webhookId}
list() List all webhooks GET /webhooks

Models

Authorization

API key

Most endpoints required to be authenticated using the API key mechanism described in our documentation. The access token generation mechanism is automatically handled by the client.

All you have to do is provide an API key when instantiating the ApiVideoClient:

const client = new ApiVideoClient({ apiKey: "YOUR_API_KEY" });

Get the access token

If you need to access the access-token value obtained using the API key, you can use the getAccessToken() method of the client:

const client = new ApiVideoClient({ apiKey: "YOUR_API_KEY" });
const accessToken = await client.getAccessToken();

Public endpoints

Some endpoints don't require authentication. These one can be called with an ApiVideoClient instantiated without API key:

const client = new ApiVideoClient();

Have you gotten use from this API client?

Please take a moment to leave a star on the client ⭐

This helps other users to find the clients and also helps us understand which clients are most popular. Thank you!

Contribution

Since this API client is generated from an OpenAPI description, we cannot accept pull requests made directly to the repository. If you want to contribute, you can open a pull request on the repository of our client generator. Otherwise, you can also simply open an issue detailing your need on this repository.

api.video-nodejs-client's People

Contributors

anthony-dantard avatar bot-api-video avatar erikkai avatar lutangar avatar ol1a avatar olivierapivideo avatar romainpetit1 avatar thibaultbee avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.