OmniVideoBench Logo

OmniVideoBench: Towards Audio-Visual Understanding Evaluation for Omni MLLMs

Homepage HuggingFace Dataset Arxiv Paper

--- ## โœจ Overview Recent advances in **multimodal large language models (MLLMs)** have brought remarkable progress in video understanding. However, most existing benchmarks fail to **jointly evaluate** both *audio* and *visual* reasoning โ€” often focusing on one modality or overlooking their interaction. ๐ŸŽฌ **OmniVideoBench** fills this gap. Itโ€™s a **large-scale, rigorously curated** benchmark for assessing **synergistic audio-visual intelligence**, emphasizing **modality complementarity**, **logical consistency**, and **long-term temporal reasoning**. - **1,000** high-quality QA pairs - **628** diverse videos (seconds โ†’ 30 minutes) - Each annotated with **step-by-step multimodal reasoning** - Evaluations reveal a large **gap between models and human reasoning**

Overview of OmniVideoBench
Figure 1. OmniVideoBench overview โ€” โ€œVโ€ indicates visual reasoning and โ€œAโ€ indicates audio reasoning. Each example includes atomic reasoning traces.

--- ## ๐ŸŽง Diverse Reasoning Dimensions OmniVideoBench tests **deep audio-visual reasoning** across a wide variety of tasks and modalities: - **628 videos** from 8 major categories & 68 subcategories - **1,000 QA pairs** with detailed reasoning chains - **13 reasoning types**, from perception to causal inference - **Audioโ€“Visual Complementarity** ensured for every question - **Long-Video Evaluation:** durations up to 30 minutes

Dataset Statistics
Figure 2. OmniVideoBench covers broad categories and reasoning types. Distributions show video durations and three audio types (Speech, Sound, Music).

--- ## ๐Ÿงฉ Pipeline A glance at how OmniVideoBench was built โ€” from raw videos to verified reasoning annotations ๐Ÿ‘‡ 1. ๐ŸŽฅ **Video Collection:** Gather long-form videos from diverse domains and acoustic environments. 2. โœ‚๏ธ **Clip Segmentation:** Divide videos into context-preserving segments. 3. ๐Ÿ’ญ **Question Generation:** Design multimodal questions that require both audio and visual reasoning. 4. ๐Ÿ”Ž **Reasoning Decomposition:** Break down each QA into atomic reasoning steps (audio / visual / both). 5. ๐Ÿงพ **Annotation & Verification:** Human experts verify correctness, modality alignment, and logical flow. 6. ๐Ÿšฆ **Quality Filtering:** Remove ambiguous or low-quality samples through multi-stage review. 7. ๐Ÿ“ฆ **Formatting & Packaging:** Structure QA data in standardized JSON and create benchmark splits.

Data Pipeline
Figure 3. Data construction and refinement pipeline of OmniVideoBench.

--- ## ๐Ÿ“ฐ Events - ๐ŸŽ‰ **ICLR 2026 Poster**: Our paper has been accepted as a poster at **ICLR 2026**! - ๐Ÿ“ฆ **HuggingFace Dataset**: OmniVideoBench dataset is now available on HuggingFace! You can directly download and use the dataset from [HuggingFace](https://huggingface.co/datasets/NJU-LINK/OmniVideoBench). --- ## ๐ŸŒŸ License Our dataset is under the CC-BY-NC-SA-4.0 license. โš ๏ธ If you need to access and use our dataset, you must understand and agree: This dataset is for research purposes only and cannot be used for any commercial or other purposes. The user assumes all effects arising from any other use and dissemination. We do not own the copyright of any raw video files. Currently, we provide video access to researchers under the condition of acknowledging the above license. For the video data used, we respect and acknowledge any copyrights of the video authors. If the original authors of the related works still believe that the videos should be removed, please contact caoruili507@gmail.com or directly raise an issue. --- ## ๐Ÿš€ Quick Start & Usage Examples ### ๐Ÿ“ฅ Dataset Access To access the OmniVideoBench dataset and videos, please: 1. **Complete the questionnaire**: Please fill out the questionnaire on HuggingFace to agree to the license terms. 2. **Download from HuggingFace**: Once your access request is approved, you can directly download the dataset from [HuggingFace](https://huggingface.co/datasets/NJU-LINK/OmniVideoBench). #### Data Structure The dataset follows a structured JSON format. Each entry contains video metadata and multiple QA pairs: ```json [ { "video": "video_10", "video_type": "Cartoon", "duration": "04:23", "questions": [ { "question": "When the man and woman in the picture were discussing ice cubes, why did they notice Superman behind them?", "question_type": "causal reasoning", "audio_type": "Sound", "reasoning_steps": [ { "modality": "vision", "evidence": "they notice Superman at 0:37.", "inference": "get the Superman." }, { "modality": "vision", "evidence": "Superman just turned around and took a step.", "inference": "get the point." }, { "modality": "audio", "evidence": "Superman made a sound when he stepped on the wooden floor.", "inference": "Because Superman made a sound when he stepped on the wooden floor." } ], "answer": "Because Superman made a sound when he stepped on the wooden floor.", "options": [ "A.Because Superman slammed the door with a loud noise.", "B.Because Superman made a sound when he stepped on the wooden floor.", "C.Because Superman's robe fell off.", "D.Because Superman made too much noise while eating." ], "correct_option": "B" } ] } ] ``` ### ๐Ÿ”ง Evaluation #### For Open-Source Models Create conda environment from `./envs` and run evaluation scripts: ```bash conda env create -f ./envs/environment_qwenomni.yml conda activate qwenomni python eval/qwenomni_eval.py \ --model_path /path/to/model \ --input_file data.json \ --video_dir ./videos ``` #### For Closed-Source Models Use API-based evaluation. Example with Gemini: ```bash # Single-threaded evaluation (default) python -m eval.gemini_eval \ --api_key YOUR_API_KEY \ --models gemini-2.0-flash \ --input_file data.json \ --video_dir ./videos # Multi-threaded evaluation (faster) python -m eval.gemini_eval \ --api_key YOUR_API_KEY \ --models gemini-2.0-flash gemini-2.5-flash \ --multithread \ -w 15 \ --input_file data.json \ --video_dir ./videos # Vision-only mode (without audio) python -m eval.gemini_eval \ --api_key YOUR_API_KEY \ --models gemini-2.5-pro \ --no_sound \ --input_file data.json \ --video_dir ./videos ``` ##### ๐Ÿ”‘ Key Parameters - `--api_key`: Your API key (required for closed-source models) - `--models`: Model(s) to evaluate, space-separated (default: all Gemini models) - `--input_file`: Path to QA JSON file (default: `data.json`) - `--video_dir`: Video files directory (default: `./videos`) - `--multithread`: Enable multi-threaded mode (default: single-threaded) - `-w, --max_workers`: Number of concurrent threads (default: 15, only for multithread mode) - `--no_sound`: Vision-only evaluation without audio ## ๐Ÿ“ Evaluation Results

Leaderboard

OmniVideoBench highlights a clear **performance gap** between **closed-source** and **open-source** omni-models โ€” showing that genuine audio-visual reasoning remains a **major unsolved challenge**.

Benchmark Results
Figure 4. Comparison across Gemini, Qwen, Baichuan, MiniCPM, and VideoLLaMA models on OmniVideoBench.

๐Ÿ“ฆ More results can been seen here.

Benchmark Results
Figure 5. Performance Comparison of some Open-Source and Closed-Source Omni Models on 13 Tasks in OmniVideoBench. Here, โ€œAttrโ€: Attribute Comparison, โ€œBac&Muโ€: Background and Music Un- derstanding, โ€œCausโ€: Cause and Effect Reasoning, โ€œCounโ€: Counting, โ€œEgoโ€: Ego Reasoning, โ€œFineโ€: Fine-grained Perception, โ€œHypoโ€: Hypothetical Reasoning, โ€œRefโ€: Referential Reasoning, โ€œRelaโ€: Rela- tionship Reasoning, โ€œSentiโ€: Sentiment Analysis, โ€œSpatiโ€: Spatial Reasoning, โ€œSummโ€: Summarization, โ€œTempoโ€: Temporal Sequencing Understanding.

Benchmark Results

Benchmark Results