Uploading video files directly from user's browser to ByteArk Stream and ByteArk Qoder service.
For Yarn:
yarn add @byteark/video-upload-sdk
For npm:
npm install --save @byteark/video-upload-sdk
import { VideoUploadManager } from '@byteark/video-upload-sdk';
async function main() {
// Initialize the SDK
const uploadManager = new VideoUploadManager({
// SDK Options
serviceName: 'byteark.stream' | 'byteark.qoder',
serviceEndpoint:
'https://stream.byteark.com' | 'https://qoder.byteark.com/apps/<appId>/ajax',
formId: '<formId(Stream)>' | '<appId(Qoder)>',
formSecret: '<formSecret>',
projectKey: '<projectKey(Stream)>' | '<projectId(Qoder)>',
// Callback Functions
onUploadProgress: (job: UploadJob, progress: UploadProgress) => {
// Called when video uploading has a progress.
},
onUploadCompleted: (job: UploadJob) => {
// Called when a video has uploaded.
},
onUploadFailed: (job: UploadJob, error: Error | DetailedError) => {
// Called when video uploading failed (cannot retry).
},
onVideosCreated: (videoKeys: string[]) => {
// Called after all videos are created on our service.
},
});
// An example use case
uploadManager.addUploadJobs(fileList);
await uploadManager.start();
}
main();
You are required to create a form upload to use this SDK. You will obtain formId
and formSecret
after creating the form.
- serviceName: Please use
byteark.stream
- serviceEndpoint: An optional field, you can customize an endpoint here. A default value is
https://stream.byteark.com
- formId: Please use your form upload's
formId
- formSecret: Please use your form upload's
formSecret
- projectKey: Please use the
projectKey
that you want to upload videos into. Please refer to this documentation to get your project key.
ByteArk Qoder is our legacy service. Please contact ByteArk admin for Qoder's appId
and appSecret
.
- serviceName: Please use
byteark.qoder
- serviceEndpoint: An optional field, you can customize an endpoint here. A default value is
https://qoder.byteark.com/apps/<appId>/ajax
- formId: Please use
appId
- formSecret: Please use
appSecret
- projectKey: Please use the project's ID that you want to upload videos into.
Name | Returns | Description |
---|---|---|
getJobQueue | UploadJob[] | Returns a job queue array. |
getJobByUploadId | UploadJob | undefined | Returns a job that matches the provided uploadId. |
getIsUploadStarted | boolean | Returns true if any upload job has started. |
getIsAllUploadCancelled | boolean | Returns true if all jobs in a queue have been cancelled. |
Add videos that you want to upload. The SDK will create videos from the inputted files, trigger "onVideosCreated" callback, and add them to a job queue.
files
can be FileList
, File[]
, or VideoFileObject[]
type.
- You can simply use an array of
File
orFileList
to upload videos. Your video titles will be a name of the uploaded file. - You can use
VideoFileObject
if you want to specify more details to your video.VideoFileObject
is an object containing the following fields:file
: Your video file.videoMetadata
: An object containing any pair of string value, with no required fields. Example object fields are:title
A title of your video.tags
Tags of your video.
Set a new options to VideoUploadManager. This operation cannot be done when any upload job has already started.
Start uploading from a job queue.
Pause a job by the provided uploadId.
This method throws an error when a job with the provided uploadId cannot be found.
Resume a job by the provided uploadId.
This method throws an error when a job with the provided uploadId cannot be found.
Cancel a job by the provided uploadId.
This method throws an error when a job with the provided uploadId cannot be found.
Cancel all jobs in a job queue.
Triggers after all videos are created on our service, which will happen after calling addUploadJobs(files)
method.
Triggers after the first upload job started uploading.
Triggers periodically when upload job(s) are being uploaded.
Triggers after all upload jobs finished uploading.
Triggers when something happened while uploading and halted the uploader.
We have an example application in
This guide details the changes and how to change your code to migrate to Video Upload SDK version 1.3.
To upload videos to ByteArk Stream, you are now required to create a form upload. You will obtain formId and formSecret after creating the form. And you are now required to initialize the SDK using these form ID and form secret. Click here for an example code.
authorizationToken was removed from the SDK options. Please remove it from either ByteArk Qoder or ByteArk Stream service.
addUploadJob method was removed. Please use addUploadJobs instead. You can now add multiple videos using this new method.
The SDK will now create videos when adding upload jobs. After videos are created, the SDK will also trigger onVideosCreated callback.