@vot.js/core
v2.0.16
Published
core package
Downloads
1,848
Maintainers
Readme
@vot.js/core
Core package for vot.js. It has only basic functions without receiving video data or defining a video service
Usage
import VOTClient from "@vot.js/core";
const client = new VOTClient();
const videoData = ...;
const result = await client.translateVideo({ videoData });
Proxying via vot-worker:
import { VOTWorkerClient } from "@vot.js/core";
const client = new VOTWorkerClient({
host: "vot.toil.cc",
});
You can see more code examples here
To install:
bun install @vot.js/core