AIOZ Stream Node.js client
AIOZ Stream 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.
Project description
AIOZ Stream's 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 @aiozstream/nodejs-client
...or with yarn
:
yarn add @aiozstream/nodejs-client
Code sample
import StreamClient from "@aiozstream/nodejs-client";
(async () => {
try {
const client = new StreamClient({
publicKey: "YOUR_PUBLIC_KEY",
secretKey: "YOUR_SECRET_KEY",
});
const videoCreationPayload = {
title: "First video", // The title of your new video.
description: "A new video.", // A brief description of your video.
};
const video = await client.video.create(videoCreationPayload);
if (!video.data) {
throw new Error("Failed to create video");
}
if (!video.data.id) {
throw new Error("Failed to create video");
}
// Option 1: Use client upload with videoId
// await client.uploadVideo(video.data.id, "./path/to/video.mp4");
// console.log("Upload successfully");
// Option 2: Upload parts yourself
const uploadResult = await client.video.uploadPart(
video.data.id,
"./path/to/video.mp4",
);
console.log(uploadResult);
const checkResult = await client.video.uploadVideoComplete(video.data.id);
// Check if the video upload is complete
console.log(checkResult);
} catch (e) {
console.error(e);
}
})();
Documentation
API endpoints
API key
Method | Description | HTTP request |
---|---|---|
create() (opens in a new tab) | Create API key | POST /api_keys |
update() (opens in a new tab) | Rename API key | PATCH /api_keys/{id} |
delete() (opens in a new tab) | Delete API key | DELETE /api_keys/{id} |
list() (opens in a new tab) | Get list API keys | GET /api_keys |
Live stream
Method | Description | HTTP request |
---|---|---|
createLiveStreamKey() (opens in a new tab) | Create live stream key | POST /live_streams |
createStreaming() (opens in a new tab) | Create a new live stream video | POST /live_streams/{id}/streamings |
deleteLiveStreamKey() (opens in a new tab) | Delete live stream key | DELETE /live_streams/{id} |
deleteStreaming() (opens in a new tab) | Delete live stream video | DELETE /live_streams/{id}/streamings/{stream_id} |
getLiveStreamKey() (opens in a new tab) | Get live stream key | GET /live_streams/{id} |
getLiveStreamKeys() (opens in a new tab) | Get live stream key list | GET /live_streams |
getLiveStreamPlayerInfo() (opens in a new tab) | Get live stream video public | GET /live_streams/player/{id}/videos |
getLiveStreamVideo() (opens in a new tab) | Get live stream video | GET /live_streams/{id}/videos |
getLiveStreamVideos() (opens in a new tab) | Get live stream videos | POST /live_streams/{id}/videos |
getStreaming() (opens in a new tab) | Get live stream video streaming | GET /live_streams/{id}/streamings/{stream_id} |
getStreamings() (opens in a new tab) | Get live stream video streamings | GET /live_streams/{id}/streamings |
updateLiveStreamKey() (opens in a new tab) | Update live stream key | PUT /live_streams/{id} |
updateLiveStreamVideo() (opens in a new tab) | Update live stream video | PUT /live_streams/{id}/streamings |
Players
Method | Description | HTTP request |
---|---|---|
create() (opens in a new tab) | Create a player theme | POST /players |
get() (opens in a new tab) | Get a player theme by ID | GET /players/{id} |
update() (opens in a new tab) | Update a player theme by ID | PATCH /players/{id} |
delete() (opens in a new tab) | Delete a player theme by ID | DELETE /players/{id} |
list() (opens in a new tab) | List all player themes | GET /players |
uploadLogo() (opens in a new tab) | Upload a logo for a player theme by ID | POST /players/{id}/logo |
deleteLogo() (opens in a new tab) | Delete a logo for a player theme by ID | DELETE /players/{id}/logo |
addPlayer() (opens in a new tab) | Add a player theme to a video | POST /players/add-player |
removePlayer() (opens in a new tab) | Remove a player theme from a video | POST /players/remove-player |
Playlist
Method | Description | HTTP request |
---|---|---|
addVideoToPlaylist() (opens in a new tab) | Add a video to a playlist | POST /playlists/{id}/items |
createPlaylist() (opens in a new tab) | Create a playlist | POST /playlists/create |
deletePlaylistById() (opens in a new tab) | Delete a playlist by ID | DELETE /playlists/{id} |
deletePlaylistThumbnail() (opens in a new tab) | Delete a playlist thumbnail | DELETE /playlists/{id}/thumbnail |
getPlaylistById() (opens in a new tab) | Get playlist by ID | GET /playlists/{id} |
getPlaylistPublicInfo() (opens in a new tab) | Get a playlist public | GET /playlists/{id}/player.json |
getPlaylists() (opens in a new tab) | Get user's playlists | POST /playlists |
moveVideoInPlaylist() (opens in a new tab) | Move a video in a playlist | PUT /playlists/{id}/items |
removeVideoFromPlaylist() (opens in a new tab) | Remove a video from a playlist | DELETE /playlists/{id}/items/{item_id} |
updatePlaylist() (opens in a new tab) | Update a playlist | PATCH /playlists/{id} |
Video
Method | Description | HTTP request |
---|---|---|
create() (opens in a new tab) | Create video object | POST /videos/create |
update() (opens in a new tab) | update video info | PATCH /videos/{id} |
delete() (opens in a new tab) | Delete video | DELETE /videos/{id} |
uploadThumbnail() (opens in a new tab) | Upload video thumbnail | POST /videos/{id}/thumbnail |
createCaption() (opens in a new tab) | Create a new video caption | POST /videos/{id}/captions/{lan} |
deleteCaption() (opens in a new tab) | Delete a video caption | DELETE /videos/{id}/captions/{lan} |
getCaptions() (opens in a new tab) | Get video captions | GET /videos/{id}/captions |
getCost() (opens in a new tab) | get video transcoding cost | GET /videos/cost |
getDetail() (opens in a new tab) | get video detail | GET /videos/{id} |
getVideoList() (opens in a new tab) | Get user videos list | POST /videos |
getVideoPlayerInfo() (opens in a new tab) | Get video player info | GET /videos/{id}/player.json |
setDefaultCaption() (opens in a new tab) | Set default caption | PATCH /videos/{id}/captions/{lan} |
uploadPart() (opens in a new tab) | Upload part of video | POST /videos/{id}/part |
uploadVideoComplete() (opens in a new tab) | Get upload video when complete | GET /videos/{id}/complete |
Video chapter
Method | Description | HTTP request |
---|---|---|
create() (opens in a new tab) | Create a video chapter | POST /videos/{id}/chapters/{lan} |
get() (opens in a new tab) | Get video chapters | GET /videos/{id}/chapters |
delete() (opens in a new tab) | Delete a video chapter | DELETE /videos/{id}/chapters/{lan} |
Webhook
Method | Description | HTTP request |
---|---|---|
create() (opens in a new tab) | Create webhook | POST /webhooks |
get() (opens in a new tab) | Get user's webhook by id | GET /webhooks/{id} |
update() (opens in a new tab) | Update event webhook | PATCH /webhooks/{id} |
delete() (opens in a new tab) | Delete webhook | DELETE /webhooks/{id} |
list() (opens in a new tab) | Get list webhooks | GET /webhooks |
check() (opens in a new tab) | Check webhook by id | POST /webhooks/check/{id} |
Rate limiting
AIOZ Stream implements rate limiting to ensure fair usage and stability of the service. The API provides the rate limit values in the response headers for any API requests you make.
In this Node.js client, you can access these headers by using the
listWithResponseHeaders()
versions of the methods. These methods return both the
response body and the headers, allowing you to check the X-RateLimit-Limit
,
X-RateLimit-Remaining
, and X-RateLimit-Retry-After
headers to understand
your current rate limit status.
Here is an example of how to use these methods:
const client = new StreamClient({
secretKey: "YOUR_SECRET_KEY",
publicKey: "YOUR_PUBLIC_KEY"
});
const { headers, body } = const webhook = await client.webhook.listWithResponseHeaders();
Authorization
API key and public key
All endpoints required to be authenticated using the API key and public key mechanism described in our documentation (opens in a new tab).
All you have to do is provide an API key and public key when instantiating the StreamClient:
const client = new StreamClient({
secretKey: 'YOUR_SECRET_KEY',
publicKey: 'YOUR_PUBLIC_KEY'
})