File size: 1,748 Bytes
094dd5d 6bb1883 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | ---
license: apache-2.0
---
# VidAudio-Bench: Benchmarking V2A and VT2A Generation across Five Audio Categories
## 1. Overview
VidAudio-Bench is a comprehensive multi-task benchmark designed for evaluating both Video-to-Audio (V2A) and Video-Text-to-Audio (VT2A) generation systems.
The benchmark comprises 1,634 video-text pairs spanning five audio categories:
- SFX: 400 samples
- Music: Instrument: 191 samples ; BGM: 231 samples
- Speech: 412 samples
- Singing: 400 samples
VidAudio-Bench aims to facilitate the evaluation of:
- Audio-video synchronization
- Semantic consistency between video and generated audio
- Text-guided controllable audio generation
- Fine-grained audio category understanding
---
## 2. Dataset Structure
The dataset is organized as follows:
```text
VidAudio-Bench/
├── original_videos/ # original video files (.mp4)
├── silent_videos/ # muted video files (.mp4)
├── annotations/ # metadata files (.jsonl)
```
---
## 3. Data Format
Each sample in the annotation file follows the format below:
```json
{
"video_name": "6TiZ1coebWw_76s",
"category": "SFX",
"V2A_positive_prompt": "Realistic foley sound synchronized with the video.",
"negative_prompt": "music, background music, speech, singing",
"VT2A_positive_prompt": "Realistic foley sound of a fan rotating."
}
```
---
## 4. Citation
If you use this dataset, please cite:
```bibtex
@article{zhang2026vidaudio,
title={VidAudio-Bench: Benchmarking V2A and VT2A Generation across Five Audio Categories},
author={Zhang, Qian and Cao, Yuqin and Gao, Yixuan and Min, Xiongkuo},
journal={arXiv preprint arXiv:2604.10542},
year={2026}
}
``` |