ODAQ is a dataset addressing the scarcity of openly available collections of audio signals accompanied by corresponding subjective scores of perceived quality.
ODAQ contains 240 audio samples accompanied by corresponding quality scores obtained via a MUSHRA listening test carried out in parallel at Fraunhofer IIS (Germany) and at Netflix, Inc. (USA).
The quality-rated audio samples are processed versions of the original audio material (also made available). The original audio material consists of: - stereo audio with 44.1 or 48 kHz sampling frequency; - 14 music excerpts (8 of which are solo recordings); - 11 excerpts from movie-like soundtracks with dialogues mixed with music and effects (separate stems and transcripts are also provided).
Please refer to our ICASSP 2024 paper for full details about the listening test and please cite it if you find this dataset useful:
@inproceedings{Torcoli2024ODAQ,
author = {Torcoli, M. and Wu, C. W. and Dick, S. and Williams, P. A. and Halimeh, M. M. and Wolcott, W. and Habets, E. A. P.},
year = {2024},
month = {April},
title = {{ODAQ}: Open Dataset of Audio Quality},
address = {Seoul, Korea},
booktitle={IEEE International Conference on Acoustics Speech and Signal Processing (ICASSP)}
}
The ODAQ package contains the raw results from the listening test. The results for each participant are stored as .xml files as output by the listening test app.
For convenience, the raw results are also aggregated in ODAQ_results.csv so that they can be easily loaded, e.g., in python by pandas:
import pandas
ODAQ_results=pandas.read_csv('./ODAQ/ODAQ_listening_test/ODAQ_results.csv')
And then plot with seaborn:
import seaborn
import matplotlib.pyplot as plt
seaborn.pointplot(data=ODAQ_results, x='condition', y='score', hue='method', linestyle='none', dodge=True, capsize=.1)
plt.grid()
plt.title('ODAQ')
plt.xlabel('Quality Levels')
plt.ylabel('BAQ [MUSHRA points]')
Returning an overview of the quality scores contained in the dataset:

In just a few lines of code, you were able to reproduce a slightly uglier version of Fig. 2 in our paper.
We make this data available to the community and we welcome contributions and extensions from the community!
There are many ways to contribute to ODAQ (and we welcome all of them!). Here, we will provide examples of two main types of contributions:
This type of contribution extends the dataset with materials such as new audio content and/or new subjective scores. Please refer to ./extend/ subfolder for more information.
This type of contribution utilizes the dataset for benchmarking and provides the results in a reproducible manner. Please refer to ./benchmark/ subfolder for more information.