Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Upload media to VidJutsu CDN.
const { data, error } = await vj.uploadFromUrl({ url: "https://example.com/video.mp4", }); console.log(data.url); // CDN URL
const file = await fs.readFile("./video.mp4"); const { data, error } = await vj.uploadFile(file); console.log(data.url); // CDN URL
{ "id": "upl_...", "url": "https://cdn.vidjutsu.ai/uploads/..." }