Grounding Audio LLMs, Smarter TTS, and Cinematic Multi-Talker Benchmarks
Today's digest covers seven papers tackling the hardest grounding problems in conversational AI: audio LLMs that ignore acoustics, TTS systems that punch above their data weight, event-camera-driven speech synthesis, and a new cinematic benchmark for multi-talker video generation.
Pipeline of EventSpeech. During training (left), the framework learns highly natural speech representations guided by audio supervision and neuromorphic events, which capture high-frequency articulatory dynamics often missed by standard RGB frames. During inference (right), strict multimodal consistency accommodates both text-only generation via learned alignment priors and vision-augmented synthesis when events are available. From EventSpeech.
A recurring theme across today's papers is grounding — making audio and visual models actually pay attention to the signals they're supposed to process. Whether it's an LLM collapsing onto language priors mid-reasoning, a TTS pipeline that earns competitive quality through data discipline rather than scale, or a benchmark exposing what cinematic video generation still gets wrong, the field is in active diagnosis mode. Here's what landed.
Talking Avatars & Audio-Visual Generation
Scene-level audio-visual generation is maturing fast, but our ability to measure cinematic quality has lagged behind.
Generating convincing multi-talker video requires far more than lip sync and audio fidelity — it demands acting nuance, atmospheric coherence, and intelligent camera work. MTAVG-Bench 2.0 takes a structured approach to diagnosing exactly where current systems fall short, building a 45-failure-mode taxonomy spanning acting, atmosphere, and cinematography. With over 11,600 QA instances, it enables LLM-assisted evaluation of high-level audio-visual failures that simple metrics like FID or CLIP score would never catch.
MTAVG-Bench 2.0 · 2026-05
MTAVG-Bench 2.0: Diagnosing Failure Modes of Cinematic Expressiveness in Multi-Talker Audio-Video Generation
A benchmark for evaluating cinematic expressiveness in multi-talker audio-video generation beyond basic metrics. It establishes a 45-failure-mode taxonomy across acting, atmosphere, and cinematography, with 11,600+ QA instances for diagnosing high-level audio-visual failures in scene-level video generation using LLMs.
Abstract
In recent years, Multi-Talker Audio-Video Generation (MTAVG) models have shown promising performance on fundamental metrics such as lip-sync and audio-visual alignment. However, these metrics remain insufficient for assessing cinematic expressiveness in scene-level generation. In multi-character scenes, generation models must go beyond audio-visual realism to convey coherent character performance and other higher-level cinematic qualities. To fill this gap, we introduce MTAVG-Bench 2.0, a benchmark for diagnosing failure modes of cinematic expressiveness in multi-talker audio-video generation. Unlike prior settings that mainly focus on the quality of basic multi-turn dialogue, MTAVG-Bench 2.0 targets short-drama and scene-level generation, and establishes a high-level failure taxonomy spanning acting, narrative, atmosphere, and audio-visual language. Based on this taxonomy, we construct more than 10,000 question-answering evaluation instances, together with subsets for short-drama-level assessment and temporal localization of failure modes, to systematically evaluate the ability of omni large language models to diagnose high-level audio-visual failures. Experimental results show that commercial omni models such as Gemini substantially outperform other evaluators, yet even the strongest models continue to struggle with complex failures in our benchmark. These results demonstrate that MTAVG-Bench 2.0 provides a systematic benchmark for failure diagnosis in cinematic multi-talker audio-video generation.
MIT
TTS & Voice Synthesis
Two very different approaches to speech synthesis — one rethinks the sensor, the other rethinks the recipe.
Scaling TTS to proprietary data budgets has been the default playbook, but PilotTTS challenges that assumption head-on. By focusing on meticulous data engineering rather than architectural novelty, it achieves competitive performance using just 200K hours of openly processed data — matching systems trained on orders-of-magnitude more proprietary audio. The result is a fully reproducible, lightweight autoregressive system that makes a strong case for disciplined modularity over brute-force scale.
PilotTTS · 2026-05
PilotTTS: A Disciplined Modular Recipe for Competitive Speech Synthesis
A lightweight autoregressive TTS system that achieves competitive performance through meticulous data engineering rather than scale or architectural novelty. Using only 200K hours of openly processed data, PilotTTS matches systems trained on orders of magnitude more proprietary data while remaining fully reproducible.
Abstract
Building state-of-the-art text-to-speech (TTS) systems typically demands millions of hours of proprietary data and complex multi-stage architectures, creating substantial barriers for resource-constrained research teams. In this report, we present PilotTTS, a lightweight autoregressive TTS system that achieves competitive performance through minimalist architecture and rigorous data engineering. PilotTTS is trained on only 200K hours of data processed entirely with open-source tools. Specifically, our contributions are: (1) a reproducible multi-stage data processing pipeline covering quality assessment, label annotation, and filtering, and (2) a compact model architecture that employs Q-Former-based conditioning to decouple speaker identity from speaking style via cross-sample paired training. Within a unified framework, PilotTTS supports zero-shot voice cloning, emotion synthesis (11 categories), paralinguistic synthesis (4 categories), and Chinese dialect synthesis (14 dialects). On the Seed-TTS Eval benchmark, PilotTTS achieves the lowest WER of 1.50% on test-en, a CER of 0.87% on test-zh, and the highest speaker similarity on both test sets (0.862 and 0.815), outperforming systems trained on significantly larger datasets. We release the complete data pipeline recipe, pretrained weights, and code at https://github.com/AMAPVOICE/PilotTTS.
Apache-2.0
Frame-based visual speech synthesis has long suffered from motion blur and temporal mismatch when tracking fast articulatory dynamics. EventSpeech sidesteps these issues entirely by swapping the camera: neuromorphic event cameras capture facial movements at microsecond temporal resolution, providing far richer articulatory dynamics for emotionally expressive speech generation from text. It's a hardware-level rethink of the visual TTS pipeline.
EventSpeech · 2026-05
Can We Hear from Events? Generating Speech from Event Camera
EventSpeech uses neuromorphic event cameras to generate emotionally expressive speech from text by capturing high-frequency facial articulatory dynamics at microsecond precision, eliminating motion blur and temporal mismatch inherent in frame-based visual speech synthesis.
Abstract
Traditional RGB-based speech generation faces Temporal Granularity Mismatch since fixed camera exposure times inevitably blur the high-frequency articulatory transients essential for rendering emotional speech. To break this ceiling, we propose EventSpeech as a novel text-conditioned framework pioneering the use of neuromorphic events for expressive speech generation, since these microsecond-precise events naturally align with acoustic waveform dynamics. Our architecture integrates a dedicated Event Encoder to model sparse neuromorphic events alongside a multi-scale Audio Encoder featuring a Hierarchical Wavelet Contextualizer (HWC). A bidirectional alignment mechanism seamlessly synchronizes linguistic content and visual dynamics with dense acoustic features. Furthermore, we construct EVT-SPK as the first benchmark comprising large-scale synthetic data and real-world recordings from specialized neuromorphic hardware. Extensive evaluations demonstrate that EventSpeech significantly outperforms current baselines by preserving fine-grained emotions and resisting motion blur to establish a new paradigm for multimodal speech generation. Code and demo are available at https://xrfang-0102.github.io/EventSpeechWeb/.
Apache-2.0
SpeechLLMs, Voice Agents & Spoken Dialogue
Three papers this week each attack a different facet of the same core problem: audio LLMs that don't really listen.
Streaming audio reasoning introduces a fundamental tension — a model must decide, token by token, whether to wait for more input, emit an intermediate thought, or commit to an answer. Wait-Think-Answer Control formalizes this as a learned online decision problem, training a controller with trajectory-level rewards covering correctness, timing, reasoning quality, and latency simultaneously. Unlike approaches that treat intermediate reasoning as a static prompt format, this work optimizes the when of thinking, not just the what.
Wait-Think-Answer Control · 2026-05
Learning When to Think While Listening in Large Audio-Language Models
This paper learns when to externalize intermediate reasoning during streaming audio by training a controller to decide online whether to wait, emit a thinking update, or answer. It optimizes full trajectory with rewards covering correctness, timing, reasoning quality, and latency—not just final answer.
Abstract
Recent advances in Large Audio-Language Models (LALMs) have made real-time, streaming spoken interaction increasingly practical. In this setting, reasoning quality and responsiveness are tightly coupled: delaying reasoning until the speech endpoint can improve answer quality but moves deliberation into user-visible response delay, while answering too early risks committing before decisive evidence arrives. We introduce a learnable wait-think-answer control formulation for LALMs. Motivated by the incremental nature of human conversation, the controller decides under partial audio evidence when to wait, when to externalize a compact reasoning update, and when to answer. Using Qwen2.5-Omni-7B as the base model, we construct aligned wait-think-answer traces from spoken reasoning data, train the controller with supervised fine-tuning (SFT), and then apply Decoupled Clip and Dynamic Sampling Policy Optimization (DAPO). The reward combines answer correctness, action validity, update timing, latency synchronization, reasoning quality, and chain consistency, optimizing the complete wait-think-answer trajectory and not the final answer alone. On a six-task synthetic spoken reasoning question answering (SRQA) benchmark, the six-reward DAPO controller improves the row-weighted accuracy from 67.6% to 70.3% while reducing post-endpoint final-think length by 14% under the same Qwen deployment harness. On a 186-item human-recorded Real Audio Bench, a transfer check beyond text-to-speech (TTS)-rendered speech, the controller family remains functional: SFT achieves the strongest accuracy, while the six-reward DAPO controller is the only learned variant whose final-think length falls below the base. These results suggest that a streaming model should learn when to make intermediate reasoning explicit during the audio stream.
NOASSERTION
A subtler failure mode emerges later in the reasoning chain: models that start grounded in audio progressively shift toward language statistics as generation continues. MAPO (Modality-Aware Policy Optimization) targets this late-stage modality collapse directly, using cross-modal differential entropy to identify audio-critical tokens and applying targeted policy gradients only where acoustic grounding is at risk. Crucially, it requires no domain-specific annotations — the signal is entirely statistical.
MAPO · 2026-05
Escape the Language Prior: Mitigating Late-Stage Modality Collapse in Audio Reasoning via Modality-Aware Policy Optimization
MAPO mitigates late-stage modality collapse in audio-reasoning LLMs using cross-modal differential entropy to identify audio-critical tokens and apply targeted policy gradients. It sustains cross-modal grounding throughout reasoning without domain-specific biases, relying on native statistical signals.
Abstract
Audio and omni-modal large language models exhibit impressive cross-modal reasoning capabilities. However, applying standard reinforcement learning post-training algorithms to these models exposes a critical structural vulnerability: methods like GRPO apply uniform policy gradients across all tokens, ignoring their unequal dependence on the non-text source modality. This exacerbates late-stage modality collapse during extended chain-of-thought generation, where models progressively abandon the primary source signal in favor of compressed textual priors, leading to confident but ungrounded hallucinations. To address this, we introduce Modality-Aware Policy Optimization (MAPO), a novel dual-branch reinforcement learning framework. First, MAPO dynamically concentrates the policy gradient on modality-critical tokens using a modality relevance mask, which is derived from the cross-modal differential entropy between an audio-ablated reference and the multimodal policy. Second, it integrates an auxiliary attention loss branch that applies a targeted, temporally scaled penalty to the model's internal attention distributions. This ensures the model actively sustains cross-modal grounding deep into the reasoning trace. Evaluations on complex audio reasoning benchmarks demonstrate that MAPO substantially improves long-horizon reasoning fidelity and multimodal instruction following, achieving highly competitive performance and setting new state-of-the-art results on several key benchmarks among open-weight models. By relying strictly on native statistical signals rather than domain-specific inductive biases, MAPO offers a promising foundation for mitigating epistemic collapse across diverse multimodal systems.
Apache-2.0
VoxParadox makes the language-over-acoustics bias concrete through an adversarial benchmark: it deliberately mismatches transcripts with speech paralinguistics (e.g., happy text spoken with a sad voice), then measures how often Audio LLMs follow the text rather than the sound. Layer-wise probing reveals exactly where acoustic representations degrade. The paper then recovers acoustic grounding via PCLM (Paralinguistic Contrastive Language Modeling) combined with DPO, closing a gap that standard benchmarks systematically miss.
VoxParadox · 2026-05
Do Audio LLMs Listen or Read? Analyzing and Mitigating Paralinguistic Failures with VoxParadox
VoxParadox exposes how Audio LLMs prioritize text over acoustic cues through an adversarial benchmark that mismatches transcripts with speech paralinguistics. Layer-wise probing identifies representation degradation, while PCLM and DPO jointly recover acoustic grounding that standard benchmarks fail to measure.
Abstract
Audio large language models (Audio LLMs) demonstrate strong performance on speech understanding tasks, yet their ability to understand paralinguistic information remains limited. To systematically quantify this issue, we introduce VoxParadox, an adversarial benchmark with 2,000 verified examples, spanning 10 paralinguistic tasks, created with controlled speech synthesis to intentionally mismatch transcript claims and speaking style, enabling direct measurement of speech paralinguistic understanding. Evaluation of a diverse set of Audio LLMs reveals consistently low accuracy on acoustic ground truth and a strong tendency to follow language-implied (incorrect) answers. To understand the cause of this gap, we perform layer-wise probing and find that (i) paralinguistic cues can degrade in deeper encoder layers and at the encoder--LLM interface, and (ii) even when such cues are available in audio tokens, the language model frequently ignores them. To address these problems, we propose Prompt-Conditioned Layer Mixer (PCLM), which adaptively combines information from multiple audio layers based on the input prompt, and pair it with Direct Preference Optimization (DPO) to explicitly prefer acoustically supported options over language-implied alternatives. These methods substantially improve Audio LLM paralinguistic understanding, improving Audio Flamingo 3 from 17.40% to 65.20% on VoxParadox, and from 37.74% to 54.78% on MMSU paralinguistic subset. Our project page is available at https://voxparadox.github.io/.
USC Research License
ASR & Audio Understanding
Few-shot prompting is powerful at inference time — but can a model be trained to actively use it?
In-context learning with audio demonstrations is tricky: simply prepending examples at inference time doesn't guarantee the model actually aligns them with the query. FSA-GRPO addresses this with RL-based post-training, using semantic alignment rewards to explicitly optimize models to benefit from few-shot demonstrations. Critically, it preserves zero-shot capability, making it practical for low-resource speech tasks where switching between zero- and few-shot modes is common.
FSA-GRPO · 2026-05
FSA-GRPO: Teaching Auditory LLMs to Use Few-shot Demonstrations
FSA-GRPO uses RL-based post-training to teach auditory LLMs to leverage few-shot demonstrations through semantic alignment rewards. Unlike inference-time prompting, it explicitly optimizes models to benefit from demonstrations while preserving zero-shot capability for low-resource speech tasks.
Abstract
Few-shot prompting provides an effective way to adapt auditory large language models to low-resource tasks such as children's speech recognition. However, most auditory large language models are not explicitly trained to perform inference in this demonstration-conditioned format, limiting the extent to which they can benefit from few-shot prompting. To address this limitation, we introduce Few-Shot Aware GRPO (FSA-GRPO), an RL-based post-training recipe that uses a specially designed reward to encourage the model to leverage few-shot demonstrations, thereby strengthening its few-shot adaptation ability. Notably, training with only high-resource adult ASR data improves the model's general few-shot adaptation ability, yielding gains not only in children's speech recognition but also in speech translation and audio understanding. We further study data selection and auxiliary reward weighting to identify an effective training recipe. Our experiments show that when in-domain data are unavailable or cannot be used for training, FSA-GRPO is more effective than direct tuning on related out-of-domain data.