Concept animation

Paper: 2605.04045 Authors: You Qin, Kai Liu, Shengqiong Wu, Kai Wang, Shijian Deng, Yapeng Tian, Junbin Xiao, Yazhou Xing, Yinghao Ma, Bobo Li Categories: cs.CV

The Gap

Audio-visual AI has exploded in the foundation model era—Meta MovieGen generates synchronized video with sound, Google Veo-3 creates cinematic clips from text. But the field is a mess. Researchers use inconsistent taxonomies (is audio-driven video generation “understanding” or “generation”?), evaluate on incomparable benchmarks, and publish methods that can’t be systematically compared. Prior surveys either predate the foundation model shift or focus narrowly on single tasks like video captioning or sound localization. No one has mapped the full landscape—understanding, generation, and interaction—through the unified lens of how large models actually work: tokenization, cross-modal fusion, autoregressive vs diffusion architectures, instruction tuning.

Fragmented Literature          Unified Taxonomy
(inconsistent tasks)    -->    (understand/generate/interact)
        +                               +
Heterogeneous Methods   -->    Shared Foundations
(can't compare)                (tokenization, fusion, training)
        +                               +
Scattered Benchmarks    -->    Structured Evaluation
(no integration)               (datasets, metrics, challenges)
        ||
        v
   This Survey: First comprehensive framework for AVI in foundation model era

The Increment

One sentence: Before this paper, audio-visual AI was a collection of disconnected subfields; after, we have a unified map showing how foundation models handle the full spectrum from speech recognition to video-to-audio synthesis.

Core Mechanism

This isn’t a methods paper—it’s a survey that organizes the chaos. The authors establish a three-tier taxonomy. Tier 1 splits tasks into understanding (perceive multimodal input), generation (create audio or video from the other modality), and interaction (dialogue, embodied agents). Tier 2 breaks each into subtasks: understanding includes speech recognition, sound localization, audio-visual segmentation; generation covers text-to-video with audio, audio-driven talking heads, video-to-audio; interaction spans conversational agents and embodied systems. Tier 3 dives into methodological foundations shared across tasks: how to tokenize continuous audio/video into discrete tokens, how to fuse modalities (early fusion, late fusion, cross-attention), whether to use autoregressive models (like GPT) or diffusion models (like Stable Diffusion), and how to scale pretraining and align models with human preferences.

                    Audio-Visual Intelligence
                            |
        +-------------------+-------------------+
        |                   |                   |
   Understanding        Generation         Interaction
        |                   |                   |
   [speech recog]      [text->video+audio]  [dialogue agents]
   [sound local]       [audio->video]       [embodied AI]
   [AV segment]        [video->audio]       [agentic systems]
        |                   |                   |
        +-------------------+-------------------+
                            |
                  Shared Foundations
                            |
        [Tokenization] -> [Fusion] -> [Architecture] -> [Training]
         (audio/video)   (cross-modal)  (AR/diffusion)  (pretrain/align)

Think of this survey as building a subway map for a city that grew organically. Audio-visual AI is like a sprawling metropolis where neighborhoods (tasks) developed independently—some have bullet trains (mature methods), others dirt roads (nascent research). Researchers in the “speech recognition” district rarely visit the “video-to-audio” quarter, and when they do, they can’t find their way because street signs use different languages. This survey draws the first complete metro map. It identifies the major lines (understanding, generation, interaction), marks all the stations (specific tasks), and—crucially—shows the transfer hubs (shared methodological foundations) where techniques from one line can transfer to another. The tokenization hub connects discrete NLP methods to continuous audio/video. The fusion hub shows how to merge modalities. The architecture hub reveals that autoregressive and diffusion models are two rail systems serving the same city. Now a researcher can see: “I’m working on audio-driven video, but the instruction tuning techniques from conversational agents might apply here.”

Key Concepts

  • Modality Tokenization: Audio and video are continuous signals—waveforms and pixel arrays that change smoothly over time. Foundation models like GPT or DALL-E work with discrete tokens (words, image patches). How do you bridge this? For audio, you can use codecs (like EnCodec) that compress waveforms into sequences of integers, or learned embeddings from models like HuBERT. For video, you split frames into patches (like ViT does for images) or use 3D convolutions to capture spatiotemporal chunks. The key insight: tokenization isn’t just compression—it’s choosing what level of abstraction the model sees. Coarse tokens (fewer codes) lose detail but are easier to model; fine tokens preserve nuance but explode sequence length. Example: MovieGen uses a hierarchical codec with 12 levels—coarse tokens capture rhythm and pitch, fine tokens capture timbre and texture.

  • Cross-Modal Fusion: You have audio tokens and video tokens. How do you make them talk to each other? Early fusion concatenates them before processing (like stacking audio and video frames into a single tensor). Simple but rigid—the model must learn alignment from scratch. Late fusion processes each modality separately, then combines high-level features (like averaging embeddings). Flexible but misses low-level correlations (e.g., lip sync). Cross-attention is the sweet spot: audio tokens attend to video tokens and vice versa, letting the model learn which parts of one modality correspond to which parts of the other. Example: In audio-driven talking heads, cross-attention lets the model focus on phoneme tokens when generating mouth shapes, and prosody tokens when generating head motion.

  • Autoregressive vs Diffusion: Two paradigms for generation. Autoregressive models (like GPT) generate one token at a time, left to right, conditioning each token on all previous ones. Fast to sample, easy to control (you can steer generation mid-stream), but error accumulation—one bad token poisons the rest. Diffusion models (like Stable Diffusion) start with noise and iteratively denoise, refining the entire output in parallel. Slower (requires many denoising steps) but higher quality and better at capturing global structure (e.g., long-range audio-video synchronization). The field is split: autoregressive dominates text-to-video (because it’s easier to scale to long sequences), diffusion dominates video-to-audio (because audio quality matters more than speed). Some recent models (like Transfusion) try to combine both.

Framework Shift

Before (task-specific silos):        After (unified foundation model view):

Speech Recognition                   Understanding Tasks
    [custom ASR model]                   |
                                     [shared tokenizer]
Sound Localization                       |
    [custom detector]                [cross-modal fusion]
                                         |
Text-to-Video                        [foundation backbone]
    [custom T2V model]                   |
                                     [task-specific heads]
Video-to-Audio                           |
    [custom V2A model]               Generation Tasks
                                         |
Dialogue Agents                      Interaction Tasks
    [custom chatbot]

Each task reinvents the wheel.       Shared infrastructure, specialized outputs.
No knowledge transfer.               Techniques transfer across tasks.

From isolated task-specific models to a layered architecture where tasks share tokenization, fusion, and backbone, differing only in output heads and training objectives.

Expert Assessment

Problem choice: This is real infrastructure work. The field genuinely needed a map—I’ve reviewed papers where authors cite “audio-visual learning” but mean completely different things. The timing is right: foundation models have matured enough that patterns are emerging, but not so mature that this is obvious. The gap is legitimate.

Method maturity: Not applicable—this is a survey, not a methods paper. But the taxonomy is well-designed. The three-tier structure (task families → specific tasks → shared foundations) is more useful than prior surveys’ flat lists. The decision to organize around foundation model components (tokenization, fusion, architecture) rather than application domains is the right call for 2025+.

Experimental integrity: Surveys don’t have experiments, but the authors curate datasets and benchmarks across tasks. The comparison tables are dense but fair—they don’t cherry-pick metrics to favor certain methods. One weakness: the “open challenges” section (synchronization, spatial reasoning, controllability, safety) is generic. Every multimodal survey lists these. I wanted more specificity: *which synchronization problems are actually hard? Lip sync is mostly solved; what about subtle audio-visual correlations like footstep timing or ambient sound propagation?

Writing quality: The paper is comprehensive but exhausting. At 20+ pages, it tries to cover everything and ends up feeling like a reference manual rather than a narrative. The introduction is strong—it motivates the need for unification clearly. But the middle sections (task descriptions, method details) are dense catalogs. The paper would be stronger if the authors picked 3-4 representative tasks, explained them deeply with running examples, then summarized the rest in tables. The “future directions” section is the weakest—it’s a wishlist without prioritization. Which problems are tractable in 2 years vs 10 years?

Verdict: weak accept — Valuable infrastructure work that will be widely cited, but the execution is more encyclopedia than insight. The taxonomy is the contribution; the rest is thorough but not revelatory.

Takeaways

For practitioners building audio-visual systems: Don’t reinvent tokenization. Use established codecs (EnCodec for audio, ViT-style patching for video) unless you have a compelling reason. Cross-attention is the default fusion mechanism—early/late fusion are only justified if you have extreme compute constraints or need real-time performance.

For researchers: The “shared foundations” framing is the steal. If you’re working on a niche audio-visual task, check what techniques from other tasks in the taxonomy might transfer. Example: instruction tuning (from dialogue agents) is underexplored in generation tasks—can you fine-tune a video-to-audio model with natural language instructions like “make the footsteps sound heavier”?

For anyone evaluating foundation models: The survey’s benchmark curation is useful. They identify that many audio-visual benchmarks are too small (< 1000 samples) or too narrow (single domain like music videos). If you’re building a new model, test on diverse benchmarks across task families to avoid overfitting to one distribution.

The meta-lesson: When a field fragments, the first comprehensive map becomes infrastructure. This survey will shape how people think about audio-visual AI for the next 2-3 years, not because it has novel insights, but because it provides a shared vocabulary.

论文: 2605.04045 作者: You Qin, Kai Liu, Shengqiong Wu, Kai Wang, Shijian Deng, Yapeng Tian, Junbin Xiao, Yazhou Xing, Yinghao Ma, Bobo Li 分类: cs.CV

缺口

视听AI在基础模型时代爆发了——Meta MovieGen生成同步的视频和声音,Google Veo-3从文本创造电影级片段。

但这个领域是一团乱麻。

研究者使用不一致的分类法(音频驱动的视频生成算”理解”还是”生成”?

),在无法比较的基准上评估,发表的方法无法系统性对比。

之前的综述要么早于基础模型转型,要么狭隘地聚焦单一任务如视频字幕或声音定位。

没人绘制过全景地图——理解、生成、交互——用大模型实际运作方式的统一视角:分词、跨模态融合、自回归vs扩散架构、指令调优。

碎片化文献                统一分类法
(任务不一致)      -->    (理解/生成/交互)
      +                         +
异构方法          -->    共享基础
(无法比较)                (分词、融合、训练)
      +                         +
分散的基准        -->    结构化评估
(无整合)                  (数据集、指标、挑战)
      ||
      v
本综述:基础模型时代AVI的首个全面框架

增量

一句话: 这篇论文之前,视听AI是一堆互不相连的子领域;

之后,我们有了统一地图,展示基础模型如何处理从语音识别到视频转音频合成的全谱系。

核心机制

这不是方法论文——是一篇整理混乱的综述。

作者建立了三层分类法。

第一层将任务分为理解(感知多模态输入)、生成(从另一模态创造音频或视频)、交互(对话、具身智能体)。

第二层将每类拆分为子任务:理解包括语音识别、声音定位、视听分割;

生成涵盖文本到带音频的视频、音频驱动的说话人头像、视频到音频;

交互跨越对话智能体和具身系统。

第三层深入跨任务共享的方法论基础:如何将连续的音频/视频分词为离散token,如何融合模态(早期融合、晚期融合、交叉注意力),是用自回归模型(如GPT)还是扩散模型(如Stable Diffusion),以及如何扩展预训练和对齐模型与人类偏好。

                    视听智能
                       |
        +--------------+--------------+
        |              |              |
      理解           生成           交互
        |              |              |
   [语音识别]    [文本->视频+音频]  [对话智能体]
   [声音定位]    [音频->视频]       [具身AI]
   [视听分割]    [视频->音频]       [智能体系统]
        |              |              |
        +--------------+--------------+
                       |
                   共享基础
                       |
        [分词] -> [融合] -> [架构] -> [训练]
       (音视频)  (跨模态)  (AR/扩散)  (预训练/对齐)

把这篇综述想象成为有机生长的城市绘制地铁图

视听AI像一座蔓延的大都市,各个街区(任务)独立发展——有些有高铁(成熟方法),有些是土路(新兴研究)。

“语音识别”区的研究者很少去”视频转音频”区,即使去了也找不到路,因为路标用不同语言。

这篇综述画出了第一张完整地铁图。

它标出主要线路(理解、生成、交互),标记所有站点(具体任务),关键是——展示换乘枢纽(共享方法论基础),一条线的技术可以在这里转移到另一条线。

分词枢纽连接离散NLP方法和连续音视频。

融合枢纽展示如何合并模态。

架构枢纽揭示自回归和扩散模型是服务同一座城市的两套轨道系统。

现在研究者能看到:“我在做音频驱动视频,但对话智能体的指令调优技术可能适用这里。

关键概念

  • 模态分词: 音频和视频是连续信号——波形和像素阵列随时间平滑变化。

GPT或DALL-E这样的基础模型处理离散token(单词、图像块)。

如何架桥?

对音频,可以用编解码器(如EnCodec)将波形压缩为整数序列,或用HuBERT等模型的学习嵌入。

对视频,将帧分割为块(像ViT对图像做的)或用3D卷积捕获时空块。

关键洞察:分词不只是压缩——是选择模型看到的抽象层级。

粗粒度token(更少代码)丢失细节但易建模;

细粒度token保留细微差别但序列长度爆炸。

例子:MovieGen用12层分层编解码器——粗token捕获节奏和音高,细token捕获音色和纹理。

  • 跨模态融合: 你有音频token和视频token。

如何让它们对话?

早期融合在处理前拼接它们(像把音频和视频帧堆叠成单一张量)。

简单但僵硬——模型必须从零学习对齐。

晚期融合分别处理每个模态,然后组合高层特征(如平均嵌入)。

灵活但错过低层相关性(如唇同步)。

交叉注意力是最佳点:音频token关注视频token,反之亦然,让模型学习一个模态的哪些部分对应另一个模态的哪些部分。

例子:在音频驱动的说话人头像中,交叉注意力让模型在生成嘴型时聚焦音素token,在生成头部动作时聚焦韵律token。

  • 自回归vs扩散: 生成的两种范式。

自回归模型(如GPT)一次生成一个token,从左到右,每个token以所有先前token为条件。

采样快,易控制(可以中途引导生成),但误差累积——一个坏token毒害其余。

扩散模型(如Stable Diffusion)从噪声开始,迭代去噪,并行精炼整个输出。

更慢(需要多次去噪步骤)但质量更高,更擅长捕获全局结构(如长程音视频同步)。

该领域分裂:自回归主导文本到视频(因为更易扩展到长序列),扩散主导视频到音频(因为音频质量比速度更重要)。

一些近期模型(如Transfusion)尝试结合两者。

框架转变

之前(任务特定孤岛):              之后(统一基础模型视角):

语音识别                          理解任务
    [定制ASR模型]                     |
                                  [共享分词器]
声音定位                              |
    [定制检测器]                  [跨模态融合]
                                      |
文本到视频                        [基础骨干]
    [定制T2V模型]                     |
                                  [任务特定头]
视频到音频                            |
    [定制V2A模型]                 生成任务
                                      |
对话智能体                        交互任务
    [定制聊天机器人]

每个任务重新发明轮子。            共享基础设施,专门化输出。

无知识迁移。                      技术跨任务迁移。

从孤立的任务特定模型到分层架构,任务共享分词、融合和骨干,仅在输出头和训练目标上不同。

专家评审

选题眼光: 这是真正的基础设施工作。

该领域确实需要一张地图——我审过论文,作者引用”视听学习”但指完全不同的东西。

时机恰当:基础模型已足够成熟,模式正在浮现,但还没成熟到这是显而易见的。

缺口是合法的。

方法成熟度: 不适用——这是综述,不是方法论文。

但分类法设计得好。

三层结构(任务族→具体任务→共享基础)比之前综述的扁平列表更有用。

围绕基础模型组件(分词、融合、架构)而非应用领域组织的决定,对2025+是正确的。

实验诚意: 综述没有实验,但作者跨任务整理了数据集和基准。

对比表密集但公平——他们没有挑选指标来偏袒某些方法。

一个弱点:“开放挑战”部分(同步、空间推理、可控性、安全)很泛泛。

每个多模态综述都列这些。

我想要更具体:哪些同步问题真正困难?

唇同步基本解决了;

那微妙的视听相关性如脚步时机或环境声传播呢?

写作功力: 论文全面但令人疲惫。

20+页,试图覆盖一切,最终感觉像参考手册而非叙事。

引言很强——清晰地激发了统一的需求。

但中间部分(任务描述、方法细节)是密集的目录。

如果作者挑3-4个代表性任务,用贯穿例子深入解释,然后在表格中总结其余,论文会更强。

“未来方向”部分最弱——是没有优先级的愿望清单。

哪些问题2年内可解决vs 10年?

判决: 弱接收 — 有价值的基础设施工作,会被广泛引用,但执行更像百科全书而非洞察。

分类法是贡献;

其余彻底但不启示性。

要点总结

对构建视听系统的实践者: 别重新发明分词。

使用已建立的编解码器(音频用EnCodec,视频用ViT式分块),除非你有令人信服的理由。

交叉注意力是默认融合机制——早期/晚期融合只在极端计算约束或需要实时性能时才合理。

对研究者: “共享基础”框架是可偷的。

如果你在做小众视听任务,检查分类法中其他任务的技术是否可迁移。

例子:指令调优(来自对话智能体)在生成任务中探索不足——你能用自然语言指令如”让脚步声更重”微调视频到音频模型吗?

对评估基础模型的任何人: 综述的基准整理有用。

他们指出许多视听基准太小(<1000样本)或太窄(单一领域如音乐视频)。

如果你在构建新模型,在跨任务族的多样基准上测试,避免过拟合到一个分布。

元教训: 当一个领域碎片化时,第一张全面地图成为基础设施。

这篇综述将塑造人们未来2-3年如何思考视听AI,不是因为它有新颖洞察,而是因为它提供了共享词汇表。