Noename commited on
Commit
faa7a3e
·
verified ·
1 Parent(s): 512403f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -13
README.md CHANGED
@@ -25,9 +25,16 @@ size_categories:
25
 
26
  # MAVL: Multilingual Audio-Video Lyrics Dataset for Animated Song Translation
27
 
28
- ## Dataset Description
 
 
 
 
 
 
29
 
30
- This dataset contains a collection of YouTube URLs corresponding to songs from animated musicals. It includes meticulously aligned lyrics (English, Spanish, French, Korean, and Japanese) with corresponding timestamps, song titles, and artist information. MAVL is designed as the first multilingual, multimodal benchmark for singable lyrics translation.
 
31
 
32
  **Crucially, this dataset does not contain the actual audio, video, or full lyric text files directly due to copyright considerations.** Instead, it provides structured metadata and URLs, along with a compact representation of lyrics (e.g., first letters of words, first/last words of lines) and their syllable counts, and precise timestamps. This allows for the reconstruction of original lyrics and the download of associated multimedia content via provided scripts.
33
 
@@ -36,7 +43,7 @@ This dataset contains a collection of YouTube URLs corresponding to songs from a
36
  The dataset is provided in a JSON format. Each entry represents a song and contains:
37
 
38
  * **Song Title:** The name of the animated song.
39
- * **`lyrics`**: A nested structure containing lyric lines for each language (`US_og` for original English, `ES` for Spanish, `FR` for French, `KO` for Korean, `JA` for Japanese). Each line includes:
40
  * `text`: A compact representation of the original lyric line (e.g., `["Tsimp", "There's", "pants"]` for "Squirrels in my pants"). This is designed to allow for the reconstruction of the full lyric text using external resources.
41
  * `line_number`: The sequential number of the lyric line.
42
  * `syllable_count`: The syllable count of the lyric line.
@@ -90,6 +97,18 @@ The dataset is provided in a JSON format. Each entry represents a song and conta
90
  ]
91
  ```
92
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  ## Intended Uses & Limitations
94
 
95
  This dataset is intended solely for **non-commercial research purposes**, such as lyrics translation, music-lyrics alignment, music information retrieval, and multimodal language model development.
@@ -102,16 +121,6 @@ This dataset is intended solely for **non-commercial research purposes**, such a
102
  * The dataset primarily focuses on animated musicals and may not generalize to all musical genres or styles.
103
  * The current lyric representation requires external processing to reconstruct full lyric text.
104
 
105
- ## Data Collection Methodology
106
-
107
- The MAVL dataset was collected through a multi-step web crawling and human alignment process:
108
-
109
- 1. **Multilingual Lyrics Collection:** Metadata (song titles, artists) for English animated film music was gathered from last.fm. Original English lyrics were retrieved from Genius. Non-English lyrics corresponding to official dubbed versions were collected from platforms like lyricstranslate.com, ensuring they represent singable interpretations.
110
- 2. **Lyrics Human Alignment:** A crucial step involved cross-referencing original English audio/video with non-English candidate lyrics and their official dubbed audio/video to rigorously verify authenticity and exclude non-official or non-singable versions.
111
- 3. **Audio-Video-Lyrics Alignment:** The `stable-ts` tool (based on Whisper model) was used to generate precise timestamps, aligning audio, video, and lyrics to extract synchronized multimodal information.
112
-
113
- For more detailed information on the data collection pipeline, please refer to Section 3.1 and Appendix D of our accompanying paper.
114
-
115
  ## License
116
 
117
  This dataset is distributed under the **CC BY-NC 4.0 (Creative Commons Attribution-NonCommercial 4.0 International)** license (see the `LICENSE` file for full details). Key points include:
 
25
 
26
  # MAVL: Multilingual Audio-Video Lyrics Dataset for Animated Song Translation
27
 
28
+ <div align="center">
29
+ <img src="assets/mavl_logo.png" alt="MAVL Dataset Overview" width="200">
30
+ </div>
31
+
32
+ [![Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-MAVL-blue)](https://huggingface.co/datasets/Noename/MAVL)
33
+ [![GitHub Repository](https://img.shields.io/badge/GitHub-MAVL--Repo-181717?logo=github)](https://github.com/k1064190/MAVL)
34
+ [![arXiv](https://img.shields.io/badge/arXiv-2505.18614-b31b1b.svg)](https://arxiv.org/abs/2505.18614)
35
 
36
+ ## Dataset Description
37
+ This dataset contains a collection of YouTube URLs corresponding to songs from animated musicals. It includes meticulously aligned lyrics (English, Spanish, French, Korean, and Japanese) with corresponding timestamps, song titles, and artist information. MAVL is designed as the first multilingual, multimodal benchmark for singable lyrics translation. **To complete the dataset by downloading lyrics, audio, and video, and for related processing scripts, please refer to our [GitHub Repository](https://github.com/k1064190/MAVL).**
38
 
39
  **Crucially, this dataset does not contain the actual audio, video, or full lyric text files directly due to copyright considerations.** Instead, it provides structured metadata and URLs, along with a compact representation of lyrics (e.g., first letters of words, first/last words of lines) and their syllable counts, and precise timestamps. This allows for the reconstruction of original lyrics and the download of associated multimedia content via provided scripts.
40
 
 
43
  The dataset is provided in a JSON format. Each entry represents a song and contains:
44
 
45
  * **Song Title:** The name of the animated song.
46
+ * **`lyrics`**: A nested structure containing lyric lines for each language (`US_og` for original English, `ES` for Spanish, `FR` for French, `KR` for Korean, `JP` for Japanese). Each line includes:
47
  * `text`: A compact representation of the original lyric line (e.g., `["Tsimp", "There's", "pants"]` for "Squirrels in my pants"). This is designed to allow for the reconstruction of the full lyric text using external resources.
48
  * `line_number`: The sequential number of the lyric line.
49
  * `syllable_count`: The syllable count of the lyric line.
 
97
  ]
98
  ```
99
 
100
+ ## Data Collection Methodology
101
+ <div align="center">
102
+ <img src="assets/dataset_collect.png" alt="MAVL Dataset Overview" width="800">
103
+ </div>
104
+ The MAVL dataset was collected through a multi-step web crawling and human alignment process:
105
+
106
+ 1. **Multilingual Lyrics Collection:** Metadata (song titles, artists) for English animated film music was gathered from last.fm. Original English lyrics were retrieved from Genius. Non-English lyrics corresponding to official dubbed versions were collected from platforms like lyricstranslate.com, ensuring they represent singable interpretations.
107
+ 2. **Lyrics Human Alignment:** A crucial step involved cross-referencing original English audio/video with non-English candidate lyrics and their official dubbed audio/video to rigorously verify authenticity and exclude non-official or non-singable versions.
108
+ 3. **Audio-Video-Lyrics Alignment:** The `stable-ts` tool (based on Whisper model) was used to generate precise timestamps, aligning audio, video, and lyrics to extract synchronized multimodal information.
109
+
110
+ For more detailed information on the data collection pipeline, please refer to Section 3.1 and Appendix D of our accompanying paper.
111
+
112
  ## Intended Uses & Limitations
113
 
114
  This dataset is intended solely for **non-commercial research purposes**, such as lyrics translation, music-lyrics alignment, music information retrieval, and multimodal language model development.
 
121
  * The dataset primarily focuses on animated musicals and may not generalize to all musical genres or styles.
122
  * The current lyric representation requires external processing to reconstruct full lyric text.
123
 
 
 
 
 
 
 
 
 
 
 
124
  ## License
125
 
126
  This dataset is distributed under the **CC BY-NC 4.0 (Creative Commons Attribution-NonCommercial 4.0 International)** license (see the `LICENSE` file for full details). Key points include: