MACF: Scaling Video Understanding via Compact Latent Multi-Agent Collaboration
> Paper: Scaling Video Understanding via Compact Latent Multi-Agent Collaboration > Authors: Kerui Chen, Jinglu Wang, Jianrong Zhang, Ming Li, Yan Lu > arXiv: 2605.00444 | 2026-04-29
The "Long Video" Dilemma for MLLMs
Imagine asking a multimodal large language model (MLLM) about a one-hour documentary:
> "When does the protagonist first mention his childhood?"
The challenges:
- MLLM context windows are limited (e.g., 32K tokens)
- One hour of video = hundreds of thousands of frames
- The full video cannot fit into the model
- The system must choose "which frames to look at"
- Uniform sampling: may miss critical frames
- Rule-based preprocessing: hand-crafted, causes information loss
- Text summaries: discard visual detail
- Video frames are encoded into compact latent vectors
- Not raw pixels, but semantic features
- Drastically reduces storage and communication overhead
- Agent 1: watches the first third of the timeline
- Agent 2: watches the middle third
- Agent 3: watches the final third
- Each agent has an independent perception budget
- Agents share key information with each other
- They do not work independently but collaborate
- A message-passing mechanism integrates information
- The result is a global understanding
- The entire framework is differentiable
- The division of labor is learned from data
- No hand-designed rules
- Perception budget bottleneck: the context window is a hard limit; long videos must be compressed, and compression means information loss
- Attention dilution: even if everything fits, attention is spread thin — each frame gets too little attention, and key frames get drowned out
- Parallel scaling: adding more agents handles longer videos; perception budget is decoupled from video length
- Specialization: each agent can specialize in particular content (e.g., one for dialogue, one for actions), improving efficiency
- Collaborative enhancement: agents can alert each other — "I saw a key event at minute 15" — "let me go back and look at that segment closely"; collective intelligence exceeds individual intelligence
- Problem too large → split it
- Split parts → process in parallel
- Results → integrate
Limitations of existing approaches:
The core question: how do we understand long video under a limited perception budget?
MACF: Decoupling Perception Budget from Video Complexity
MACF (Multi-Agent Collaboration Framework) proposes:
> Instead of having one model watch the entire video, multiple agents divide the work and collaborate, each watching only a portion.
Technical approach:
1. Compact Latent Representation
2. Multi-Agent Division of Labor
3. Collaborative Reasoning
4. End-to-End Training
Analogy: it's like an archaeological team excavating an ancient city — not one person digging the whole site, but small groups each responsible for an area, sharing important findings to reconstruct the whole picture.
Why Multi-Agent Beats Single-Agent
Single-agent limitations:
MACF advantages:
The Feynman-Style Takeaway
> "If you can't break it into smaller pieces, you can't handle big problems."
In video understanding:
> "An hour-long video is a 'big problem' for a single model. But split it among multiple agents, each handling a small segment — this is ancient wisdom for handling complexity, which MACF brings into AI."
This reflects a core principle of distributed computing:
Lessons to Take Away
If you work with long sequences or multimodal data, ask yourself:
1. "Is my system limited by a perception/context budget?" 2. "Could multi-agent division of labor break through that limit?" 3. "How can agents collaborate effectively?" 4. "Can compact representations reduce communication overhead?"
MACF reminds us: when a single agent cannot handle complexity, let multiple agents collaborate — a strategy validated by both nature and human society.
On the road to long-video understanding, MACF shows a new path: not making a model "see more," but making multiple models "each see a part, then understand together."
In an ocean of information, the best swimmer is not the strongest, but the best at teaming up.