Reference
Remy Reference/agent/analyzeVideo
?

analyzeVideo

Analyze a video using a video analysis model based on a text prompt.
mindstudio.analyzeVideo({ prompt, videoUrl }) → Result

Runs a video-analysis model over a clip against a prompt and returns text — a summary, moment-spotting, or answers about what happens on screen. For a single frame, analyzing an image is cheaper; this is for motion and sequence.

Parameters
prompt
string
RequiredInstructions describing what to look for or extract from the video
videoUrl
string
RequiredURL of the video to analyze
videoAnalysisModelOverride
object
Optional model configuration override. Uses the workflow's default video analysis model if not specified
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.analyzeVideo({
  prompt: /* ... */,
  videoUrl: /* ... */
});