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.
Scores whether a source video will clone well before you spend on rendering.
const { data, error } = await vj.cloneCheck({ videoUrl: "https://cdn.example.com/source.mp4", context: "TikTok UGC — woman reviewing a skincare product", });
videoUrl
string
context
verdict
"strong"
"possible"
"weak"
score
number
evidence
string[]
model
const { data } = await vj.cloneCheck({ videoUrl: "https://cdn.example.com/source.mp4", }); if (data.verdict === "weak") { // Usually not worth continuing — pick another source. } else { // "strong" or "possible" — worth continuing to the clone steps. }