@vot.js/core
v2.4.12
Published
core package
Downloads
371
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