AI news and explainers at 7 AM weekdays, plus a Sunday weekly at 8Get it in your inbox

METAL LAB

AVE-Compass: Towards Holistic Evaluation for Audio-Video Editing Abilities

arXiv:2607.248212026-07-16

A benchmark that finally checks whether video-editing AIs handle sound as well as picture, plus an agent that does it better

Instruction-based video editors often change the visuals convincingly while leaving the audio wrong or accidentally erased. AVE-Compass is a diagnostic benchmark with 145 source videos, 196 audio-visually coupled edit instructions, and 2,688 checklist items built to catch exactly these cross-modal failures. Based on what it exposed, the authors built AVE-Agent, a plan-execute-evaluate system, and compared it against six existing editing models.

METAL LAB explanatory visual

How AVE-Compass and AVE-Agent work together

Evidence statusMeasured results reported

  1. Source video + instructionA video with its original audio plus a natural-language edit request is the input
  2. Planner agentAnalyzes the clip and breaks the instruction into a dependency graph (DAG) of video/audio/speech subtasks with per-step evaluation criteria
  3. Executor agentRuns each subtask with the matching tool and self-checks/retries when a subtask evaluator flags a failure
  4. Mixed evaluator agentRescoring the assembled clip for instruction following, fidelity, and quality, then triggering remix, subtask redo, or full replanning
  5. AVE-Compass scoringChecklist-based IF/FP scores, a separate Realism rubric, and automated metrics like lip sync diagnose each model's failure pattern
An explanatory diagram made by METAL LAB, not a figure supplied by the paper's authors.

What they did

  1. The work starts from a gap: most video-editing benchmarks only judge silent-video visuals or evaluate audio edits in isolation, missing real-world requests that need coordinated audio-visual changes.
  2. The team curated 145 source videos and 196 human-verified audio-visually coupled editing instructions, then had humans validate 2,688 Yes/No checklist items that check both whether the edit was executed and whether untouched content was preserved.
  3. Evaluation splits into four MLLM-judged dimensions—Instruction Following (IF), Fidelity Preserving (FP), Realism, and Editing Intent (EI, defined as IF x FP to capture full success)—plus seven automated metrics such as lip sync and audio-visual synchronization.
  4. Guided by these diagnostics, they built AVE-Agent: a planner agent that breaks instructions into a dependency graph of video/audio/speech subtasks, an executor agent that runs and self-corrects each subtask, and an evaluator agent that rechecks the assembled clip and triggers remixing or replanning; it was compared against five existing systems (Wan2.7, HappyHorse, Gemini-Omni, Seedance, LTX2).
Figure 1: Illustration of AVE-Compass. Given the same editing instruction, the four panels illustrate characteristic ways current audio-visual editing models drift, with IF (Instruction Following) and FP (Fidelity Preserving) marks indicating where each output breaks.
Figure 1: Illustration of AVE-Compass. Given the same editing instruction, the four panels illustrate characteristic ways current audio-visual editing models drift, with IF (Instruction Following) and FP (Fidelity Preserving) marks indicating where each output breaks.
Table 1: Comparison of AVE-Compass with existing editing benchmarks. Target Modality denotes the evaluated streams. Task Labels summarize task coverage with normalized labels, including object, scene, motion, camera, VFX, audio event, and speech. # Metrics and # Task Categories count evaluation dimensions and editing operation types, respectively. Cross-Modal Evaluation indicates whether the benchmark evaluates audio–video coupled editing, ranging from object-level correspondence to global-scene dependencies with diagnostic checks. Multi-Shot and Speech Edit indicate support for multi-shot source clips and speech-related editing. Difficulty Analysis denotes stratified evaluation over factors such as target localization, audio-source complexity, and cross-modal linkage. AVE-Compass is the only benchmark that jointly supports all these capabilities.
BenchmarkTarget ModalityTargetModalityTask LabelsTaskLabels# Metrics#Metrics# Task Categories# TaskCategoriesCross-Modal EvaluationCross-ModalEvaluationMulti- ShotMulti-ShotSpeech Edit
Target
Modality
Task
Labels
#
Metrics
# Task
Categories
Cross-Modal
Evaluation
Multi-
Shot
Speech
Edit
Difficulty
Analysis
Video-Only Editing Benchmarks
VEBench Sun 2025VideoObject, Scene3N/A
IVEBench Chen 2025VideoObject, Scene1235
FiVE Li 2025VideoObject156
UniVBench Wei 2026VideoScene216
CoVEBench Wu 2026VideoObject, Scene1119
Audio-Visual Editing Benchmarks
SAVEBench Xu 2025VideoAudioObject121Object-level
AVED-Bench Lin 2026VideoAudioObject53Object-level
AVI-Edit Zheng 2025VideoAudioAudio Event73Object-level
AVE-Compass (Ours)VideoAudioObject, Scene, Audio Event, SpeechObject, Scene,Audio Event, Speech1928Global Scene
Object, Scene,
Audio Event, Speech
Figure 2: Dataset statistics of the AVE-Compass benchmark.
Figure 2: Dataset statistics of the AVE-Compass benchmark.
Table 2: MLLM-as-Judge results on AVE-Compass. We report four dimensions—Editing Intent, Instruction Following, Fidelity Preserving, and Realism—each as Overall / Video / Audio scores on a 0–100 scale. Models are ranked by the Overall Editing Intent score, which serves as the primary measure of complete edit execution by jointly accounting for instruction following and fidelity preservation. All metrics are higher-is-better. Best in bold. ∗Gemini misses 16 speech edits due to content moderation.
ModelEditing IntentInstruction FollowingFidelity PreservingRealism
OverallVideoAudioOverallVideoAudioOverallVideoAudioOverallVideoAudio
AVE-Agent (Wan)59.8+17.466.7+6.650.2+25.477.3+8.084.8+6.569.4+9.177.6+13.480.1+1.674.8+26.762.1+1.745.3+1.878.9+1.5
Wan2.742.460.124.869.378.360.364.278.548.160.443.577.4
HappyHorse41.356.718.866.975.554.563.974.553.363.049.976.0
Gemini-Omni∗38.056.110.044.974.010.884.976.896.166.949.284.5
Seedance26.636.113.537.450.524.481.783.080.469.254.084.4
LTX215.210.726.470.172.866.230.624.542.364.142.086.2
Figure 3: Overview of AVE-Agent. Given a source video with audio and an edit instruction, the planner agent first preprocesses the input audio-visual clip and analyzes it through structured captioning. Conditioned on this analysis, it decomposes the instruction into a dependency-aware subtask DAG with per-step evaluation criteria. The executor agent executes the subtasks in order. For each subtask, it refines the intent into tool prompts and tool specifications, routes the request to the video, audio, or speech branch, and optimizes the result through a reflection loop guided by the planner-provided criteria. Finally, the mixed evaluator agent consumes the temporary assembled clip and planner criteria, scores instruction following, Fidelity Preserving, and quality, and outputs a control signal for final pass, remixing, subtask regeneration, or replanning.
Figure 3: Overview of AVE-Agent. Given a source video with audio and an edit instruction, the planner agent first preprocesses the input audio-visual clip and analyzes it through structured captioning. Conditioned on this analysis, it decomposes the instruction into a dependency-aware subtask DAG with per-step evaluation criteria. The executor agent executes the subtasks in order. For each subtask, it refines the intent into tool prompts and tool specifications, routes the request to the video, audio, or speech branch, and optimizes the result through a reflection loop guided by the planner-provided criteria. Finally, the mixed evaluator agent consumes the temporary assembled clip and planner criteria, scores instruction following, Fidelity Preserving, and quality, and outputs a control signal for final pass, remixing, subtask regeneration, or replanning.
Table 3: Automated metric results on AVE-Compass, grouped into Cross-Modal, Video, and Audio metrics. All metrics are higher-is-better. Best in bold. ∗Gemini misses 16 speech edits due to content moderation. †Speech Quality and Lip Sync are computed only on speech-category edits.
ModelCross-ModalVideoAudio
Lip Sync†AV SyncVideo AestheticSubject ConsistencyMotion SmoothnessAudio AestheticSpeech Quality†
AVE-Agent (Wan)0.622+0.0910.766+0.0730.452+0.0010.972+0.0030.987+0.0010.614+0.0050.368-0.060
Wan2.70.5310.6930.4510.9690.9860.6090.428
HappyHorse0.6200.6950.4390.9750.9890.6500.726
Gemini-Omni∗0.7010.4340.9740.9880.627
Seedance0.4310.7180.4300.9710.9870.6290.388
LTX20.6180.7580.4680.9680.9860.6410.522
Figure 4: Robustness under difficulty. Left: Editing Intent across source-video duration. Right: object-localization hardness, audio-source complexity, and cross-modal linkage degree evaluated with modality-matched metrics. Hatched audio-source complexity bars mark Audio Fidelity Preserving inflated by audio non-response. Scores are on a 0–100 scale.
Figure 4: Robustness under difficulty. Left: Editing Intent across source-video duration. Right: object-localization hardness, audio-source complexity, and cross-modal linkage degree evaluated with modality-matched metrics. Hatched audio-source complexity bars mark Audio Fidelity Preserving inflated by audio non-response. Scores are on a 0–100 scale.
Table 4: Response-gated Fidelity Preserving and Realism by modality. Response rate measures whether the target modality changes. The “all” columns average over all evaluated cases, while the “gated” columns recompute Fidelity Preserving and Realism only on cases where the corresponding target modality responds. All metrics are higher-is-better. Bold marks the lowest, i.e., worst, response rates.
ModelResponse RateFidelity Preserving (all)Fidelity Preserving (gated)Realism (all)Realism (gated)
VideoAudioVideoAudioVideoAudioVideoAudioVideoAudio
AVE-Agent (Wan)92.794.480.174.877.970.945.378.943.076.6
Wan2.790.695.678.548.176.344.843.577.440.475.1
HappyHorse95.874.474.553.373.131.749.976.048.873.2
Gemini-Omni89.722.076.896.174.280.649.284.546.881.2
Seedance69.147.883.080.474.960.154.084.448.582.8
LTX290.191.124.542.316.839.042.086.236.784.4
Figure 5: Metric orthogonality, single-modality editing, and error analysis. Left: Spearman correlation between subjective and objective metrics. Middle: video-only and audio-only performance, with axes normalized per metric. Right: per-model error counts across five failure categories.
Figure 5: Metric orthogonality, single-modality editing, and error analysis. Left: Spearman correlation between subjective and objective metrics. Middle: video-only and audio-only performance, with axes normalized per metric. Right: per-model error counts across five failure categories.
Table 5: Human-LLM agreement of MLLM-as-Judge metrics. Agreement measures consistency between human annotations and automatic MLLM judgments, averaged over evaluated models. Values are percentages.
MetricEditing IntentInstruction FollowingFidelity PreservingRealism
OverallVideoAudioOverallVideoAudioOverallVideoAudioOverallVideoAudio
Agreement89.990.089.991.392.989.788.887.990.191.093.089.0
Figure 6: Ablation of planner-side prompt enhancement and evaluator-driven retry refinement. Solid bars show the score without the module; hatched segments show the drop from the full AVE-Agent.
Figure 6: Ablation of planner-side prompt enhancement and evaluator-driven retry refinement. Solid bars show the score without the module; hatched segments show the drop from the full AVE-Agent.
Table 6: Reference-free objective score routing in AVE-Compass. Each score is activated only for the instruction categories where it provides relevant evidence.
Metric GroupScore NameActive Categories
Cross-Modallip_syncspeech
av_syncaudio-only, joint, speech
Videovideo_aestheticvideo-only, joint, speech
subject_consistencyvideo-only, joint, speech
motion_smoothnessvideo-only, joint, speech
Audioaudio_aestheticaudio-only, joint, speech
speech_qualityspeech
Figure 7: Qualitative case analysis. Each row shows the source frame, edit instruction, and aligned edited frames from AVE-Agent, LTX2, Wan2.7, Seedance, Gemini-Omni, and HappyHorse. Red tags mark the dominant failure observed in each selected output, including low Fidelity Preserving under regeneration, over-realistic visual effects, non-response, physical-logic errors, spurious text/object insertion, temporal inconsistency, and poor Audio Fidelity Preserving.
Figure 7: Qualitative case analysis. Each row shows the source frame, edit instruction, and aligned edited frames from AVE-Agent, LTX2, Wan2.7, Seedance, Gemini-Omni, and HappyHorse. Red tags mark the dominant failure observed in each selected output, including low Fidelity Preserving under regeneration, over-realistic visual effects, non-response, physical-logic errors, spurious text/object insertion, temporal inconsistency, and poor Audio Fidelity Preserving.
Table 7: Difficulty-stratified analysis on AVE-Compass, each axis paired with its modality-matched metric. All values are on a 0–100 scale. Video Realism is normalized from the 1–5 rubric via (x−1)/4×100. Baselines degrade with difficulty, while our agent stays notably more robust under audio-source complexity and implicit cross-modal linkage.
ModelObject-Localization Hardness Video-IFObject-Localization Hardness Video RealismAudio-Source Complexity Audio Fidelity PreservingCross-Modal Linkage Audio-IF
easyhardeasyhardsimplemod.complexexplicitimplicit
AVE-Agent (Wan)90.583.748.544.773.675.175.969.073.3
Wan2.789.376.347.342.760.346.336.061.356.0
HappyHorse78.674.956.648.566.255.038.061.313.3
Gemini-Omni73.174.254.448.1100.096.491.410.513.3
Seedance64.348.159.852.780.585.576.821.639.3
LTX275.672.237.343.052.035.836.465.472.7
Table 8: Single-modality editing (objective metrics). Top: video-only (n=16)—visual quality plus Audio Similarity (preservation of the untouched audio). Bottom: audio-only (n=5)—audio quality plus Video Similarity (preservation of the untouched video). Best in bold. ‡Our agent’s Audio Similarity is mildly depressed by a residual ∼1-frame muxing offset (frame-level alignment leaves an ∼8 ms residual); sample-aligned, the audio is essentially preserved.
ModelVideo AestheticSubject ConsistencyMotion SmoothnessAudio Similarity
AVE-Agent (Wan)0.4630.9830.9850.969‡
Wan2.70.4670.9830.9860.759
HappyHorse0.4540.9860.9890.999
Gemini-Omni0.4380.9830.9870.978
Seedance0.4420.9800.9850.833
LTX20.4780.9730.9830.647
Table 9: Error analysis across five failure categories (error counts; lower is better). An edit is counted as an error in a category when it fails the corresponding checklist questions (per-case yes-rate <0.5) or, for audio-visual quality, when its Realism is below 3/5. Best (lowest) per row in bold; Gemini’s low Audio Fidelity Preserving count reflects non-response, not preservation quality.
CategoryAVE-Agent (Wan)Wan2.7Happy HorseGemini OmniSeedanceLTX2
1. Poor Video Fidelity Preserving (FP×video)2227342828161
2. Poor Audio Fidelity Preserving (FP×audio)379793534106
3. Poor Video Instruction Following (IF×video)203239408844
4. Poor Audio Instruction Following (IF×audio)48697814413356
5. Poor AV Quality (Realism <3/5)485850313139
Total175283294248314406
Table 10: MLLM-as-Judge agent-backbone ablation on the 34-case subset. Scores are on a 0–100 scale. All metrics are higher-is-better. Best results within each backbone pair are in bold.
ModelEditing IntentInstruction FollowingFidelity PreservingRealism
OverallVideoAudioOverallVideoAudioOverallVideoAudioOverallVideoAudio
AVE-Agent (Wan)62.5+17.169.4+10.757.0+30.581.8+7.785.3+2.079.8+14.177.1+12.280.9+8.173.5+22.858.0+0.137.7+1.778.3-1.5
Wan45.458.726.574.183.365.764.972.850.757.936.079.8
AVE-Agent (sd2)49.0+16.244.2+10.552.0+25.170.0+26.369.6+19.168.5+31.970.0-12.664.7-17.577.2-6.164.8-8.450.2-10.180.3-5.7
Seedance32.833.726.943.750.536.682.682.283.373.260.386.0
Table 11: Automated metric agent-backbone ablation on the 34-case subset. All metrics are higher-is-better. Best results within each backbone pair are in bold. †Speech Quality and Lip Sync are computed only on the two speech-category edits.
ModelCross-ModalVideoAudio
Lip Sync†AV SyncVideo AestheticSubject ConsistencyMotion SmoothnessAudio AestheticSpeech Quality†
AVE-Agent (Wan)0.858+0.0600.821+0.1090.452+0.0000.971+0.0040.986+0.0000.627+0.0310.402-0.144
Wan0.7980.7120.4520.9670.9860.5960.546
AVE-Agent (sd2)1.000+0.6710.691+0.0590.419-0.0150.976+0.0070.989+0.0010.608-0.0260.506+0.010
Seedance0.3290.6320.4340.9690.9880.6340.496

Findings

  • AVE-Agent scored highest on Editing Intent and Instruction Following, with especially large gains on audio-side instruction following and audio-visual synchronization.
  • LTX2 followed many instructions but largely regenerated the source video, giving it poor Fidelity Preserving; Gemini-Omni and Seedance often returned the original audio or video unchanged, inflating their preservation scores while failing to satisfy the instruction.
  • Some models scored high on automated Video/Audio Aesthetic metrics but noticeably lower on the separate Realism rubric, showing technical quality and physical/logical plausibility diverge.
  • Across five repeated scoring runs, automated metrics varied by less than 0.01 and MLLM-judge scores by less than 1%, and agreement with human annotations averaged close to 90% across the four dimensions.
  • In the error analysis, AVE-Agent had the fewest total errors (175) versus 248-406 for baselines and showed no single dominant failure category, whereas Gemini's 144 audio-instruction-following errors and LTX2's 161 video-fidelity errors reflected non-response and over-regeneration respectively.

Where it can be used

  • Using AVE-Compass to screen audio-video editing models before deployment for tasks that require synchronized picture-and-sound edits
  • Diagnosing a specific model's characteristic failure pattern (e.g., over-regeneration vs. non-response) to guide pipeline fixes
  • Referencing the plan-execute-evaluate agent design for accessibility-oriented workflows such as re-dubbing or content localization

Limits and open work

  • The benchmark is deliberately kept at 145 videos / 196 instructions because scoring each clip via closed-source APIs and MLLM judging is expensive per instance.
  • AVE-Agent depends on third-party tools whose behavior may change over time, which can affect long-term reproducibility of its results.
  • Gemini missed 16 speech-related edits due to content moderation policies, so those cases are excluded from its reported results.
  • AVE-Agent's automated Audio Similarity score is mildly depressed by a roughly 1-frame (about 8ms) muxing offset; the authors note that with sample-level alignment the audio is essentially preserved.
  • The authors flag dual-use risks (deepfakes, non-consensual voice cloning) and note the released system ships without identity-cloning tools, recommending pairing it with provenance signals like watermarking.

Why it matters

Anyone evaluating or deploying audio-video editing models tends to judge quality by looking at the picture, but this work quantitatively shows that audio-side failures are the more prominent problem and gives a concrete diagnostic toolkit for it. It also gives practitioners specific failure categories to check for when choosing or building such editing systems.

Terms in this paper

  • MLLM-as-Judge · Using a large multimodal language model to score edited outputs the way a human rater would
  • checklist · A set of Yes/No questions verifying that an edit was executed correctly and that unedited content was preserved
  • Editing Intent (EI) · A score computed as Instruction Following x Fidelity Preserving, capturing complete and clean edit execution
  • subtask DAG · A dependency graph showing the order and cross-modal relations among the small editing steps derived from one instruction
  • Fidelity Preserving (FP) · How well unedited visual and audio content is kept unchanged from the source video

Original abstract (English)

While instruction-based video editing has advanced rapidly, real-world videos contain tightly coupled audio and visual signals, and editing one modality often requires coordinated changes in the other. Existing benchmarks primarily evaluate visual transformations on silent clips or isolated audio editing, leaving complex audio-visual editing and cross-modal consistency underexplored. We introduce AVE-Compass, a comprehensive benchmark with 145 curated source videos, 196 audio-visually coupled ed

Authors · Yuqing Wen

Read on arXiv

Latest papers

All papers →

Latest from METAL LAB

Figures: Yuqing Wen et al., arXiv:2607.24821, CC BY 4.0