Interface IVideoAnalyzer

Abstraction over a video analysis / understanding backend.

Unlike IVideoGenerator, analysis is typically a single-shot operation with no capability negotiation required — every analyser is expected to accept either a URL or a raw buffer and return a structured VideoAnalysis.

interface IVideoAnalyzer {
    analyzeVideo(request): Promise<VideoAnalysis>;
}

Implemented by

Methods

Methods