FalconVQA Docs

What is FalconVQA

Fast Augmented Language-based CONversational Video Question Answering — chunk footage into meaningful scenes, understand what was said and shown, and answer questions with timecodes and playable clips.

FalconVQAFast Augmented Language-based CONversational Video Question Answering — is retrieval-augmented generation for video. Point it at footage and it splits the video into meaningful chunks, runs a set of analyzers over every chunk, rolls those results up into video-level insight, and indexes all of it so the whole thing can be searched or asked questions of.

video ─▶ chunk ─▶ analyze ─▶ index ─▶ aggregate ─▶ search / ask

Every answer is grounded in a specific moment. Nothing is answered from the model's memory — if a claim is not in a retrieved segment or a stored video-level result, it does not get made.

The FalconVQA workspace: agent chat, scene timeline and clip reel panel

Two pieces

FalconVQA ships as two independently runnable services.

The split is deliberate: core is the thing worth selling as a service, and the frontend is one client of it. Everything the product does, it does through the same public HTTP API documented under API Reference.

What it can answer

You askWhat runs
"Summarise this video" / "What is this about?"ask_video → routed to the summary and chapter aggregates
"Find the part where they discuss pricing"search_moments → vector search over chunk records
"Show me every clip of the man in yellow shorts"search → show_clips → the artifact panel
"What exactly was said at 2:30?"get_video_transcript → diarized speech lines
"How busy was the store?"get_video_insights with stats
"Who was in this, and what did each person do?"get_video_entities → people linked across the whole video
"Which segments are unusual?"get_video_insights with novelty

Key ideas

Everything except the VLM calls and answer synthesis runs locally: BGE embeddings, Qdrant, Whisper, pyannote, YOLO, EasyOCR and CLIP all execute on your own hardware. Your footage never leaves your infrastructure except as frames sent to the vision model you configured.

Start here

On this page