cifkao commited on
Commit
cb5325e
·
verified ·
1 Parent(s): ce06a1f
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +26 -9
  2. alignment/10._Disparan_-_criatura.json +204 -0
  3. alignment/1_Freak_-_Automatisch_Gekommen.json +304 -0
  4. alignment/Avercage_-_Embers.json +219 -0
  5. alignment/Baila_-_Alfonso_Lugo.json +184 -0
  6. alignment/Besando_Sapos_-_Dream_Tabu.json +324 -0
  7. alignment/Bitte_beweg_dich_nicht_-_Bukto.json +189 -0
  8. alignment/Burn_Out_Man_-_Abendblau.json +249 -0
  9. alignment/CHRISTMAS_AVEC_TOI_-_imfreshyourepretty.json +334 -0
  10. alignment/CLUB_DESTINO__-_Pensando_en_ti_-_CLUB_DESTINO.json +184 -0
  11. alignment/Cafe_Jenseitz_Bebelstraße_-_kangaroo.musique.json +89 -0
  12. alignment/Capotes_à_un_Franc_-_elmanu.json +134 -0
  13. alignment/Caralibro_-_Vagos_Permanentes.json +124 -0
  14. alignment/Color_Out_-_Falling_Star.json +189 -0
  15. alignment/Confession_-_Quesabe.json +249 -0
  16. alignment/Cortez_-_Feel__Stripped_.json +214 -0
  17. alignment/Culture_&_Co._-_cool.cavemen.json +139 -0
  18. alignment/DON_VALDES_-_Tu_sais_Man.json +304 -0
  19. alignment/Da_wurdest_du_geboren_-_Alice_Tlustos_.json +124 -0
  20. alignment/Der_Baum_-_Dienstag_is_Damensauna_(2).json +234 -0
  21. alignment/Der_Musiker_-_d-music.json +464 -0
  22. alignment/Die_Revolution_gehört_Dir!_-_partysahnen.json +209 -0
  23. alignment/Diosa_de_la_noche_-_Brunela_Crochenci.json +149 -0
  24. alignment/Drei_Nüsse_-_patrouille.json +274 -0
  25. alignment/En_liberté_-_tom.leyak.json +224 -0
  26. alignment/Esencia_-_NandoMalo_.json +259 -0
  27. alignment/Explosive_Ear_Candy_-_Like_The_Sun.json +364 -0
  28. alignment/Fantasma_-_Los_Rombos.json +114 -0
  29. alignment/Freifliegen_-_durch.dick.und.duenn.json +164 -0
  30. alignment/Fußabdrücke_-_Andreas_Jachmann.json +164 -0
  31. alignment/Guayeteo_-_JhoyKing.json +244 -0
  32. alignment/HILA_-_Give_Me_the_Same.json +289 -0
  33. alignment/Háblame_-_(Talk_to_me)_-_Brunela_Crochenci.json +124 -0
  34. alignment/Ich_kann_dich_nicht_vergessen_-_Wingenbach_Frank.json +214 -0
  35. alignment/Intentando_Destacar_-_Sundayers_.json +199 -0
  36. alignment/Intro_[Pulsschlag]_-_Zeugen_der_Leere_(2).json +64 -0
  37. alignment/JASON_MILLER_-_CROWD_PLEASER.json +359 -0
  38. alignment/Keine_Lust_-_Jonny_M.json +619 -0
  39. alignment/Kinematic_-_Peyote.json +74 -0
  40. alignment/LUNABLIND_-_Vision__Radio_Edit_.json +269 -0
  41. alignment/La_rumba_del_coronavirus_-_Rich_Don_Jeri.json +344 -0
  42. alignment/Le_musée_d'air_contemporain_-_KPTN.json +244 -0
  43. alignment/Le_royaume_des_glous_glous_-_Raoul_de_QSM.json +124 -0
  44. alignment/Les_files_d'attente_-_Law'.json +259 -0
  45. alignment/Libre_by_CybeR_AttaCK_-_CyberAttacK.json +259 -0
  46. alignment/Lower_Loveday_-_Is_It_Right_.json +134 -0
  47. alignment/Mes_Larmes_-_kobzx2z.json +329 -0
  48. alignment/Moon_I_Mean_-_Wrong_Concept.json +239 -0
  49. alignment/Musik_-_Heiko.json +184 -0
  50. alignment/Mère_nature_-_Law'.json +184 -0
README.md CHANGED
@@ -72,8 +72,12 @@ It has been published in the ISMIR 2024 paper (full citation [below](#citation))
72
  The lyrics have been revised according to the newly compiled [annotation guidelines](GUIDELINES.md), which include rules about spelling and formatting, as well as punctuation and capitalization (PnC).
73
  The audio is identical to the JamendoLyrics dataset.
74
 
 
 
 
 
75
  > [!note]
76
- > **Note:** The dataset is not time-aligned as it does not easily map to the timestamps from JamendoLyrics. To evaluate **automatic lyrics alignment** (**ALA**), please use [JamendoLyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics) directly.
77
 
78
  > [!tip]
79
  > See the [project website](https://audioshake.github.io/jam-alt/) for details and the [JamendoLyrics community](https://huggingface.co/jamendolyrics) for related datasets.
@@ -100,14 +104,14 @@ The evaluation is implemented in our [`alt-eval` package](https://github.com/aud
100
  from datasets import load_dataset
101
  from alt_eval import compute_metrics
102
 
103
- dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.2.0", split="test")
104
  # transcriptions: list[str]
105
  compute_metrics(dataset["text"], transcriptions, languages=dataset["language"])
106
  ```
107
 
108
  For example, the following code can be used to evaluate Whisper:
109
  ```python
110
- dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.2.0", split="test")
111
  dataset = dataset.cast_column("audio", datasets.Audio(decode=False)) # Get the raw audio file, let Whisper decode it
112
 
113
  model = whisper.load_model("tiny")
@@ -119,15 +123,16 @@ compute_metrics(dataset["text"], transcriptions, languages=dataset["language"])
119
  ```
120
  Alternatively, if you already have transcriptions, you might prefer to skip loading the `audio` column:
121
  ```python
122
- dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.2.0", split="test").remove_columns("audio")
123
  ```
124
 
125
  ## Citation
126
 
127
- When using the benchmark, please cite [our paper](https://doi.org/10.5281/zenodo.14877443) as well as the original [JamendoLyrics paper](https://arxiv.org/abs/2306.07744):
 
128
  ```bibtex
129
- @misc{cifka-2024-jam-alt,
130
- author = {Ondrej C{\'{\i}}fka and
131
  Hendrik Schreiber and
132
  Luke Miner and
133
  Fabian{-}Robert St{\"{o}}ter},
@@ -142,15 +147,27 @@ When using the benchmark, please cite [our paper](https://doi.org/10.5281/zenodo
142
  }
143
  @inproceedings{durand-2023-contrastive,
144
  author={Durand, Simon and Stoller, Daniel and Ewert, Sebastian},
145
- booktitle={2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
146
  title={Contrastive Learning-Based Audio to Lyrics Alignment for Multiple Languages},
147
  year={2023},
148
  pages={1-5},
149
  address={Rhodes Island, Greece},
150
  doi={10.1109/ICASSP49357.2023.10096725}
151
  }
 
 
 
 
 
 
 
 
 
 
 
152
  ```
153
 
154
  ## Contributions
155
 
156
- The transcripts, originally from the [JamendoLyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics) dataset, were revised by Ondřej Cífka, Hendrik Schreiber, Fabian-Robert Stöter, Luke Miner, Laura Ibáñez, Pamela Ode, Mathieu Fontaine, Claudia Faller, April Anderson, Constantinos Dimitriou, and Kateřina Apolínová.
 
 
72
  The lyrics have been revised according to the newly compiled [annotation guidelines](GUIDELINES.md), which include rules about spelling and formatting, as well as punctuation and capitalization (PnC).
73
  The audio is identical to the JamendoLyrics dataset.
74
 
75
+ 💥 **New:** The dataset now has **line-level timings**.
76
+ They were added in the paper 📄 **Exploiting Music Source Separation for Automatic Lyrics Transcription with Whisper** by
77
+ J. Syed, I. Meresman-Higgs, O. Cífka, and M. Sandler, presented at the [2025 ICME Workshop AI for Music](https://ai4musicians.org/2025icme.html).
78
+
79
  > [!note]
80
+ > **Note:** The dataset is not time-aligned at the word level. To evaluate **automatic lyrics alignment** (**ALA**), please use [JamendoLyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics), which is the standard benchmark for that task.
81
 
82
  > [!tip]
83
  > See the [project website](https://audioshake.github.io/jam-alt/) for details and the [JamendoLyrics community](https://huggingface.co/jamendolyrics) for related datasets.
 
104
  from datasets import load_dataset
105
  from alt_eval import compute_metrics
106
 
107
+ dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.3.0", split="test")
108
  # transcriptions: list[str]
109
  compute_metrics(dataset["text"], transcriptions, languages=dataset["language"])
110
  ```
111
 
112
  For example, the following code can be used to evaluate Whisper:
113
  ```python
114
+ dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.3.0", split="test")
115
  dataset = dataset.cast_column("audio", datasets.Audio(decode=False)) # Get the raw audio file, let Whisper decode it
116
 
117
  model = whisper.load_model("tiny")
 
123
  ```
124
  Alternatively, if you already have transcriptions, you might prefer to skip loading the `audio` column:
125
  ```python
126
+ dataset = load_dataset("jamendolyrics/jam-alt", revision="v1.3.0", split="test").remove_columns("audio")
127
  ```
128
 
129
  ## Citation
130
 
131
+ When using the benchmark, please cite our [ISMIR paper](https://doi.org/10.5281/zenodo.14877443) as well as the original [JamendoLyrics paper](https://arxiv.org/abs/2306.07744).
132
+ For the line-level timings, please cite the ICME workshop paper.
133
  ```bibtex
134
+ @inproceedings{cifka-2024-jam-alt,
135
+ author = {Ond{\v{r}}ej C{\'{\i}}fka and
136
  Hendrik Schreiber and
137
  Luke Miner and
138
  Fabian{-}Robert St{\"{o}}ter},
 
147
  }
148
  @inproceedings{durand-2023-contrastive,
149
  author={Durand, Simon and Stoller, Daniel and Ewert, Sebastian},
150
+ booktitle={2023 {IEEE} International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
151
  title={Contrastive Learning-Based Audio to Lyrics Alignment for Multiple Languages},
152
  year={2023},
153
  pages={1-5},
154
  address={Rhodes Island, Greece},
155
  doi={10.1109/ICASSP49357.2023.10096725}
156
  }
157
+ @inproceedings{syed-2025-mss-alt,
158
+ author = {Jaza Syed and
159
+ Ivan Meresman-Higgs and
160
+ Ond{\v{r}}ej C{\'{\i}}fka and
161
+ Mark Sandler},
162
+ title = {Exploiting Music Source Separation for Automatic Lyrics Transcription with {Whisper}},
163
+ booktitle = {2025 {IEEE} International Conference on Multimedia and Expo Workshops (ICMEW)},
164
+ publisher = {IEEE},
165
+ year = {2025},
166
+ note = {to appear}
167
+ }
168
  ```
169
 
170
  ## Contributions
171
 
172
+ The transcripts, originally from the [JamendoLyrics](https://huggingface.co/datasets/jamendolyrics/jamendolyrics) dataset, were revised by Ondřej Cífka, Hendrik Schreiber, Fabian-Robert Stöter, Luke Miner, Laura Ibáñez, Pamela Ode, Mathieu Fontaine, Claudia Faller, April Anderson, Constantinos Dimitriou, and Kateřina Apolínová.
173
+ Line-level timings were automatically transferred from JamendoLyrics and manually corrected by Ondřej Cífka and Jaza Syed to fit the revised transcripts.
alignment/10._Disparan_-_criatura.json ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 16.02,
5
+ "end": 20.35,
6
+ "text": "Disparan, la línea hay que cruzar\n"
7
+ },
8
+ {
9
+ "start": 20.35,
10
+ "end": 25.3,
11
+ "text": "La línea que separa su mundo, que es mejor\n\n"
12
+ },
13
+ {
14
+ "start": 25.42,
15
+ "end": 30.2,
16
+ "text": "Cruzar, dar la vida, buscar trabajo, un sitio, un lugar\n"
17
+ },
18
+ {
19
+ "start": 30.2,
20
+ "end": 35.0,
21
+ "text": "Apostar todo a una ficha, él, yo, tú, ¿y quién más?\n"
22
+ },
23
+ {
24
+ "start": 35.12,
25
+ "end": 37.35,
26
+ "text": "Los que van a cruzar la línea\n"
27
+ },
28
+ {
29
+ "start": 37.53,
30
+ "end": 40.15,
31
+ "text": "Cruzar las balas, la cerca, su dignidad\n"
32
+ },
33
+ {
34
+ "start": 40.47,
35
+ "end": 44.99,
36
+ "text": "Quieren encontrar un lugar\n\n"
37
+ },
38
+ {
39
+ "start": 45.56,
40
+ "end": 50.15,
41
+ "text": "Disparan, la línea hay que cruzar\n"
42
+ },
43
+ {
44
+ "start": 50.47,
45
+ "end": 54.99,
46
+ "text": "Separan, la tierra hay que alcanzar\n"
47
+ },
48
+ {
49
+ "start": 55.42,
50
+ "end": 59.88,
51
+ "text": "Protegen su mundo, que es mejor\n"
52
+ },
53
+ {
54
+ "start": 60.31,
55
+ "end": 64.07,
56
+ "text": "Nos alejan por la fuerza\n\n"
57
+ },
58
+ {
59
+ "start": 64.8,
60
+ "end": 69.37,
61
+ "text": "Cruzar, dar la vida, buscar trabajo, un sitio, un lugar\n"
62
+ },
63
+ {
64
+ "start": 69.49,
65
+ "end": 74.38,
66
+ "text": "Apostar todo a una ficha, él, yo, tú, ¿y quién más?\n"
67
+ },
68
+ {
69
+ "start": 74.48,
70
+ "end": 76.68,
71
+ "text": "Los que van a cruzar la línea\n"
72
+ },
73
+ {
74
+ "start": 76.98,
75
+ "end": 79.54,
76
+ "text": "Cruzar las balas, la cerca, su dignidad\n"
77
+ },
78
+ {
79
+ "start": 79.88,
80
+ "end": 84.52,
81
+ "text": "Quieren encontrar un lugar\n\n"
82
+ },
83
+ {
84
+ "start": 124.07,
85
+ "end": 125.0,
86
+ "text": "No puedo parar\n"
87
+ },
88
+ {
89
+ "start": 125.26,
90
+ "end": 126.29,
91
+ "text": "No quiero parar\n"
92
+ },
93
+ {
94
+ "start": 126.49,
95
+ "end": 127.45,
96
+ "text": "Decido salir\n"
97
+ },
98
+ {
99
+ "start": 127.7,
100
+ "end": 128.78,
101
+ "text": "Decido marchar\n"
102
+ },
103
+ {
104
+ "start": 128.98,
105
+ "end": 129.93,
106
+ "text": "No puedo esperar\n"
107
+ },
108
+ {
109
+ "start": 130.16,
110
+ "end": 131.11,
111
+ "text": "No quiero esperar\n"
112
+ },
113
+ {
114
+ "start": 131.42,
115
+ "end": 132.32,
116
+ "text": "Quiero algo mejor\n"
117
+ },
118
+ {
119
+ "start": 132.58,
120
+ "end": 133.52,
121
+ "text": "Me tiro a la mar\n\n"
122
+ },
123
+ {
124
+ "start": 133.86,
125
+ "end": 134.9,
126
+ "text": "No puedo parar\n"
127
+ },
128
+ {
129
+ "start": 135.13,
130
+ "end": 136.11,
131
+ "text": "No quiero parar\n"
132
+ },
133
+ {
134
+ "start": 136.35,
135
+ "end": 138.58,
136
+ "text": "Yo quiero empezar en otro lugar\n"
137
+ },
138
+ {
139
+ "start": 138.77,
140
+ "end": 139.84,
141
+ "text": "Decido partir\n"
142
+ },
143
+ {
144
+ "start": 140.01,
145
+ "end": 141.1,
146
+ "text": "Decido probar\n"
147
+ },
148
+ {
149
+ "start": 141.25,
150
+ "end": 143.48,
151
+ "text": "Decido salir y no tragar\n\n"
152
+ },
153
+ {
154
+ "start": 143.71,
155
+ "end": 144.77,
156
+ "text": "No puedo parar\n"
157
+ },
158
+ {
159
+ "start": 144.96,
160
+ "end": 145.98,
161
+ "text": "No quiero parar\n"
162
+ },
163
+ {
164
+ "start": 146.17,
165
+ "end": 148.44,
166
+ "text": "Yo quiero empezar en otro lugar\n"
167
+ },
168
+ {
169
+ "start": 148.64,
170
+ "end": 149.68,
171
+ "text": "Decido partir\n"
172
+ },
173
+ {
174
+ "start": 149.88,
175
+ "end": 150.81,
176
+ "text": "Decido probar\n"
177
+ },
178
+ {
179
+ "start": 151.12,
180
+ "end": 153.28,
181
+ "text": "Decido salir y no tragar\n\n"
182
+ },
183
+ {
184
+ "start": 153.51,
185
+ "end": 154.57,
186
+ "text": "No puedo parar\n"
187
+ },
188
+ {
189
+ "start": 154.77,
190
+ "end": 155.85,
191
+ "text": "No puedo parar\n"
192
+ },
193
+ {
194
+ "start": 156.04,
195
+ "end": 156.98,
196
+ "text": "No puedo parar\n"
197
+ },
198
+ {
199
+ "start": 157.25,
200
+ "end": 158.24,
201
+ "text": "No puedo parar\n"
202
+ }
203
+ ]
204
+ }
alignment/1_Freak_-_Automatisch_Gekommen.json ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 21.78,
5
+ "end": 24.45,
6
+ "text": "Ich würd' so gerne meinen Namen verlieren\n"
7
+ },
8
+ {
9
+ "start": 24.89,
10
+ "end": 26.38,
11
+ "text": "(Das wär' schon okay)\n"
12
+ },
13
+ {
14
+ "start": 26.54,
15
+ "end": 29.22,
16
+ "text": "Vollkommen unerkannt durch Straßen maschieren\n"
17
+ },
18
+ {
19
+ "start": 29.7,
20
+ "end": 31.41,
21
+ "text": "(No, you don't know me)\n"
22
+ },
23
+ {
24
+ "start": 31.41,
25
+ "end": 34.05,
26
+ "text": "Es würde niemand danach fragen was geht\n"
27
+ },
28
+ {
29
+ "start": 34.49,
30
+ "end": 36.12,
31
+ "text": "(Alter scheiß auf mein Smartphone)\n"
32
+ },
33
+ {
34
+ "start": 36.34,
35
+ "end": 38.93,
36
+ "text": "Und ich hätte endlich Zeit zu verstehn\n"
37
+ },
38
+ {
39
+ "start": 39.28,
40
+ "end": 40.58,
41
+ "text": "(Ich muss einfach mal klar kommen)\n\n"
42
+ },
43
+ {
44
+ "start": 40.58,
45
+ "end": 42.6,
46
+ "text": "Ich schließ' mich ein\n"
47
+ },
48
+ {
49
+ "start": 42.88,
50
+ "end": 44.69,
51
+ "text": "Und komm' nicht raus\n\n"
52
+ },
53
+ {
54
+ "start": 44.69,
55
+ "end": 47.42,
56
+ "text": "Ich bin ein Freak, ein Freak\n"
57
+ },
58
+ {
59
+ "start": 47.72,
60
+ "end": 49.55,
61
+ "text": "Rede ständig von meinem wunderschönen Glied\n"
62
+ },
63
+ {
64
+ "start": 49.55,
65
+ "end": 52.25,
66
+ "text": "Ich bin ein Freak, ein Freak\n"
67
+ },
68
+ {
69
+ "start": 52.48,
70
+ "end": 54.31,
71
+ "text": "Glaube nicht, dass es für mich hier etwas gibt\n"
72
+ },
73
+ {
74
+ "start": 54.31,
75
+ "end": 57.04,
76
+ "text": "Ich bin ein Freak, ein Freak\n"
77
+ },
78
+ {
79
+ "start": 57.28,
80
+ "end": 59.12,
81
+ "text": "Rede ständig nur von meiner scheiß Musik\n"
82
+ },
83
+ {
84
+ "start": 59.12,
85
+ "end": 61.78,
86
+ "text": "Ich bin ein Freak, ein Freak\n"
87
+ },
88
+ {
89
+ "start": 62.09,
90
+ "end": 63.9,
91
+ "text": "Glaube nicht, dass mich von euch jemand besiegt\n"
92
+ },
93
+ {
94
+ "start": 63.9,
95
+ "end": 65.27,
96
+ "text": "Ich bin ein Freak!\n\n"
97
+ },
98
+ {
99
+ "start": 65.1,
100
+ "end": 67.63,
101
+ "text": "Ich würd' so gern den ganzen Tag musizieren\n"
102
+ },
103
+ {
104
+ "start": 68.05,
105
+ "end": 69.77,
106
+ "text": "(So mit Hoes und Cocain)\n"
107
+ },
108
+ {
109
+ "start": 69.77,
110
+ "end": 72.55,
111
+ "text": "Wer das nicht will, kann bei mir oral probieren\n"
112
+ },
113
+ {
114
+ "start": 72.88,
115
+ "end": 74.56,
116
+ "text": "(Könnte sofort losgehn)\n"
117
+ },
118
+ {
119
+ "start": 74.57,
120
+ "end": 77.27,
121
+ "text": "Hört sich das an, als würd' ich Spanisch verstehn?\n"
122
+ },
123
+ {
124
+ "start": 77.7,
125
+ "end": 79.13,
126
+ "text": "(Una loco pendejo)\n"
127
+ },
128
+ {
129
+ "start": 79.36,
130
+ "end": 81.96,
131
+ "text": "Ich zeig dir einfach meinen Penis und geh\n"
132
+ },
133
+ {
134
+ "start": 82.21,
135
+ "end": 83.98,
136
+ "text": "(Ich bin interessiert an dem Echo)\n\n"
137
+ },
138
+ {
139
+ "start": 102.89,
140
+ "end": 104.93,
141
+ "text": "Ich schließ' mich ein\n"
142
+ },
143
+ {
144
+ "start": 105.29,
145
+ "end": 107.13,
146
+ "text": "Und komm' nicht raus\n\n"
147
+ },
148
+ {
149
+ "start": 107.13,
150
+ "end": 109.86,
151
+ "text": "Ich bin ein Freak, ein Freak\n"
152
+ },
153
+ {
154
+ "start": 110.09,
155
+ "end": 111.92,
156
+ "text": "Rede ständig von meinem wunderschönen Glied\n"
157
+ },
158
+ {
159
+ "start": 111.92,
160
+ "end": 114.57,
161
+ "text": "Ich bin ein Freak, ein Freak\n"
162
+ },
163
+ {
164
+ "start": 114.89,
165
+ "end": 116.66,
166
+ "text": "Glaube nicht, dass es für mich hier etwas gibt\n"
167
+ },
168
+ {
169
+ "start": 116.75,
170
+ "end": 119.37,
171
+ "text": "Ich bin ein Freak, ein Freak\n"
172
+ },
173
+ {
174
+ "start": 119.67,
175
+ "end": 121.44,
176
+ "text": "Rede ständig nur von meiner scheiß Musik\n"
177
+ },
178
+ {
179
+ "start": 121.54,
180
+ "end": 124.29,
181
+ "text": "Ich bin ein Freak, ein Freak\n"
182
+ },
183
+ {
184
+ "start": 124.47,
185
+ "end": 126.18,
186
+ "text": "Glaube nicht, dass mich von euch jemand besiegt\n"
187
+ },
188
+ {
189
+ "start": 126.33,
190
+ "end": 127.68,
191
+ "text": "Ich bin ein Freak!\n\n"
192
+ },
193
+ {
194
+ "start": 127.5,
195
+ "end": 129.41,
196
+ "text": "Während du sprichst, bin ich in Gedanken nackt\n"
197
+ },
198
+ {
199
+ "start": 129.75,
200
+ "end": 131.36,
201
+ "text": "Ich trage nur meine Gitarre\n"
202
+ },
203
+ {
204
+ "start": 132.17,
205
+ "end": 134.2,
206
+ "text": "Ich hör nicht hin, ob irgendjemand etwas sagt\n"
207
+ },
208
+ {
209
+ "start": 134.57,
210
+ "end": 136.22,
211
+ "text": "Ich glaub' wir reden über Mathe\n"
212
+ },
213
+ {
214
+ "start": 136.99,
215
+ "end": 138.98,
216
+ "text": "Während du sprichst, bin ich in Gedanken nackt\n"
217
+ },
218
+ {
219
+ "start": 139.38,
220
+ "end": 141.13,
221
+ "text": "Ich trage nur meine Gitarre\n"
222
+ },
223
+ {
224
+ "start": 141.83,
225
+ "end": 143.79,
226
+ "text": "Ich hör nicht hin, ob irgendjemand etwas sagt\n"
227
+ },
228
+ {
229
+ "start": 144.17,
230
+ "end": 145.48,
231
+ "text": "Ich glaub', ich sitze in der Kacke\n\n"
232
+ },
233
+ {
234
+ "start": 145.48,
235
+ "end": 148.25,
236
+ "text": "Ich bin ein Freak, ein Freak\n"
237
+ },
238
+ {
239
+ "start": 148.52,
240
+ "end": 150.34,
241
+ "text": "Rede ständig von meinem wunderschönen Glied\n"
242
+ },
243
+ {
244
+ "start": 150.34,
245
+ "end": 153.06,
246
+ "text": "Ich bin ein Freak, ein Freak\n"
247
+ },
248
+ {
249
+ "start": 153.29,
250
+ "end": 155.12,
251
+ "text": "Glaube nicht, dass es für mich hier etwas gibt\n"
252
+ },
253
+ {
254
+ "start": 155.12,
255
+ "end": 157.86,
256
+ "text": "Ich bin ein Freak, ein Freak\n"
257
+ },
258
+ {
259
+ "start": 158.1,
260
+ "end": 159.92,
261
+ "text": "Rede ständig nur von meiner scheiß Musik\n"
262
+ },
263
+ {
264
+ "start": 159.92,
265
+ "end": 162.69,
266
+ "text": "Ich bin ein Freak, ein Freak\n"
267
+ },
268
+ {
269
+ "start": 162.87,
270
+ "end": 164.59,
271
+ "text": "Glaube nicht, dass mich von euch jemand besiegt\n"
272
+ },
273
+ {
274
+ "start": 164.72,
275
+ "end": 166.59,
276
+ "text": "Ich bin ein Freak!\n\n"
277
+ },
278
+ {
279
+ "start": 169.46,
280
+ "end": 171.38,
281
+ "text": "Ich bin ein Freak!\n"
282
+ },
283
+ {
284
+ "start": 174.33,
285
+ "end": 176.17,
286
+ "text": "Ich bin ein Freak!\n"
287
+ },
288
+ {
289
+ "start": 179.14,
290
+ "end": 180.93,
291
+ "text": "Ich bin ein Freak!\n\n"
292
+ },
293
+ {
294
+ "start": 182.09,
295
+ "end": 183.93,
296
+ "text": "Glaube nicht, dass mich von euch jemand besiegt\n\n"
297
+ },
298
+ {
299
+ "start": 183.93,
300
+ "end": 185.37,
301
+ "text": "Ich bin ein Freak!\n"
302
+ }
303
+ ]
304
+ }
alignment/Avercage_-_Embers.json ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 32.45,
5
+ "end": 34.1,
6
+ "text": "Through days of thunders\n"
7
+ },
8
+ {
9
+ "start": 34.26,
10
+ "end": 40.1,
11
+ "text": "Continuing stolid smiles to wear\n"
12
+ },
13
+ {
14
+ "start": 40.55,
15
+ "end": 42.44,
16
+ "text": "We're going on\n"
17
+ },
18
+ {
19
+ "start": 43.04,
20
+ "end": 46.98,
21
+ "text": "We nearly carried it to the end\n\n"
22
+ },
23
+ {
24
+ "start": 47.32,
25
+ "end": 48.88,
26
+ "text": "And every whisper\n"
27
+ },
28
+ {
29
+ "start": 49.06,
30
+ "end": 54.91,
31
+ "text": "And every beat of windy heart\n"
32
+ },
33
+ {
34
+ "start": 55.3,
35
+ "end": 57.39,
36
+ "text": "We're holding on\n"
37
+ },
38
+ {
39
+ "start": 57.76,
40
+ "end": 64.33,
41
+ "text": "For the moment when we unite\n\n"
42
+ },
43
+ {
44
+ "start": 64.51,
45
+ "end": 66.06,
46
+ "text": "No face\n"
47
+ },
48
+ {
49
+ "start": 66.06,
50
+ "end": 69.5,
51
+ "text": "Is seen at dusk of a raining day\n"
52
+ },
53
+ {
54
+ "start": 69.67,
55
+ "end": 71.28,
56
+ "text": "No name\n"
57
+ },
58
+ {
59
+ "start": 71.66,
60
+ "end": 75.5,
61
+ "text": "Is spoken in a loud voice\n"
62
+ },
63
+ {
64
+ "start": 75.5,
65
+ "end": 77.37,
66
+ "text": "Still, still\n\n"
67
+ },
68
+ {
69
+ "start": 77.37,
70
+ "end": 80.12,
71
+ "text": "One day it all\n"
72
+ },
73
+ {
74
+ "start": 80.36,
75
+ "end": 84.77,
76
+ "text": "Will gone forever, will gone forever\n"
77
+ },
78
+ {
79
+ "start": 84.77,
80
+ "end": 87.47,
81
+ "text": "Don't close your eyes\n"
82
+ },
83
+ {
84
+ "start": 87.81,
85
+ "end": 95.15,
86
+ "text": "You'll gone forever, you'll gone forever\n\n"
87
+ },
88
+ {
89
+ "start": 95.15,
90
+ "end": 96.91,
91
+ "text": "Just reach the border\n"
92
+ },
93
+ {
94
+ "start": 96.91,
95
+ "end": 102.81,
96
+ "text": "To throw your past and go ahead\n"
97
+ },
98
+ {
99
+ "start": 103.25,
100
+ "end": 105.25,
101
+ "text": "Hey, light your heart\n"
102
+ },
103
+ {
104
+ "start": 105.58,
105
+ "end": 110.74,
106
+ "text": "As we're led by a winding thread\n\n"
107
+ },
108
+ {
109
+ "start": 112.47,
110
+ "end": 114.11,
111
+ "text": "No face\n"
112
+ },
113
+ {
114
+ "start": 114.11,
115
+ "end": 117.51,
116
+ "text": "Is seen at dusk of a raining day\n"
117
+ },
118
+ {
119
+ "start": 117.51,
120
+ "end": 119.51,
121
+ "text": "No name\n"
122
+ },
123
+ {
124
+ "start": 119.67,
125
+ "end": 123.51,
126
+ "text": "Is spoken with the loud voice\n"
127
+ },
128
+ {
129
+ "start": 123.63,
130
+ "end": 125.4,
131
+ "text": "Still, still\n\n"
132
+ },
133
+ {
134
+ "start": 125.4,
135
+ "end": 128.06,
136
+ "text": "One day it all\n"
137
+ },
138
+ {
139
+ "start": 128.38,
140
+ "end": 132.82,
141
+ "text": "Will gone forever, will gone forever\n"
142
+ },
143
+ {
144
+ "start": 132.82,
145
+ "end": 135.59,
146
+ "text": "Don't close your eyes\n"
147
+ },
148
+ {
149
+ "start": 135.83,
150
+ "end": 143.67,
151
+ "text": "You'll gone forever, you'll gone forever\n\n"
152
+ },
153
+ {
154
+ "start": 169.22,
155
+ "end": 179.27,
156
+ "text": "And we are one, so I promise\n"
157
+ },
158
+ {
159
+ "start": 182.66,
160
+ "end": 189.26,
161
+ "text": "Mmm-ah, ah, ah-ah-ah\n\n"
162
+ },
163
+ {
164
+ "start": 189.26,
165
+ "end": 192.9,
166
+ "text": "One day it all\n"
167
+ },
168
+ {
169
+ "start": 193.35,
170
+ "end": 199.34,
171
+ "text": "Will gone forever, will gone forever\n"
172
+ },
173
+ {
174
+ "start": 199.67,
175
+ "end": 203.13,
176
+ "text": "Don't close your eyes\n"
177
+ },
178
+ {
179
+ "start": 203.46,
180
+ "end": 209.13,
181
+ "text": "You'll gone forever, you'll gone forever\n\n"
182
+ },
183
+ {
184
+ "start": 209.45,
185
+ "end": 213.45,
186
+ "text": "There's no more pain\n"
187
+ },
188
+ {
189
+ "start": 213.67,
190
+ "end": 215.89,
191
+ "text": "Which lasts forever\n"
192
+ },
193
+ {
194
+ "start": 216.13,
195
+ "end": 219.67,
196
+ "text": "And never severs\n"
197
+ },
198
+ {
199
+ "start": 219.67,
200
+ "end": 223.53,
201
+ "text": "Once in the end\n"
202
+ },
203
+ {
204
+ "start": 223.74,
205
+ "end": 226.15,
206
+ "text": "The flame was rendered\n"
207
+ },
208
+ {
209
+ "start": 226.15,
210
+ "end": 228.76,
211
+ "text": "But living embers\n"
212
+ },
213
+ {
214
+ "start": 228.92,
215
+ "end": 230.58,
216
+ "text": "Will burn\n"
217
+ }
218
+ ]
219
+ }
alignment/Baila_-_Alfonso_Lugo.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 10.62,
5
+ "end": 13.18,
6
+ "text": "Qué bueno que swipeaste a la derecha, mamá\n"
7
+ },
8
+ {
9
+ "start": 13.47,
10
+ "end": 16.03,
11
+ "text": "Porque a esta noche le daremos movimiento\n"
12
+ },
13
+ {
14
+ "start": 16.11,
15
+ "end": 18.53,
16
+ "text": "Que uno o dos tequilas solo pa' calentar\n"
17
+ },
18
+ {
19
+ "start": 18.8,
20
+ "end": 21.31,
21
+ "text": "Mira que aquí estamos pa' disfrutar el momento\n\n"
22
+ },
23
+ {
24
+ "start": 21.45,
25
+ "end": 23.92,
26
+ "text": "Show me what you got, oh baby, dance for me y me das\n"
27
+ },
28
+ {
29
+ "start": 24.13,
30
+ "end": 26.63,
31
+ "text": "Toda tu pasión y tu sudor, mas vete lento\n"
32
+ },
33
+ {
34
+ "start": 26.8,
35
+ "end": 29.38,
36
+ "text": "Que no tengo prisa, que esta noche da pa' más\n"
37
+ },
38
+ {
39
+ "start": 29.46,
40
+ "end": 31.56,
41
+ "text": "Muévete cerquita aquí nomás\n\n"
42
+ },
43
+ {
44
+ "start": 32.13,
45
+ "end": 37.38,
46
+ "text": "Baila, baila, hasta que me enamores, baby, tú\n"
47
+ },
48
+ {
49
+ "start": 37.46,
50
+ "end": 42.79,
51
+ "text": "Baila, baila, probaré tus sabores, baby, tú\n"
52
+ },
53
+ {
54
+ "start": 42.79,
55
+ "end": 48.13,
56
+ "text": "Baila, baila, enséñame tus colores, baby, tú\n"
57
+ },
58
+ {
59
+ "start": 48.13,
60
+ "end": 52.83,
61
+ "text": "Baila, baila, al beat de mi corazón\n\n"
62
+ },
63
+ {
64
+ "start": 74.96,
65
+ "end": 77.42,
66
+ "text": "Toma mi mano, dame tu espalda\n"
67
+ },
68
+ {
69
+ "start": 77.66,
70
+ "end": 80.22,
71
+ "text": "Y lentamente sentiré cómo me bailas\n"
72
+ },
73
+ {
74
+ "start": 80.35,
75
+ "end": 82.8,
76
+ "text": "Muévete rico, que no hay palabras\n"
77
+ },
78
+ {
79
+ "start": 82.99,
80
+ "end": 85.47,
81
+ "text": "Pa' describir cómo en mi cielo tú te empalmas\n\n"
82
+ },
83
+ {
84
+ "start": 85.64,
85
+ "end": 87.98,
86
+ "text": "Mueve tus pies, que bien sabés\n"
87
+ },
88
+ {
89
+ "start": 88.29,
90
+ "end": 90.72,
91
+ "text": "Que yo contigo desde el bungee y sin arnés\n"
92
+ },
93
+ {
94
+ "start": 90.93,
95
+ "end": 93.19,
96
+ "text": "Y al oído, yo te diré\n"
97
+ },
98
+ {
99
+ "start": 93.6,
100
+ "end": 97.4,
101
+ "text": "Que el dirty talk se nos vendrá hasta en inglés, oh yes (oh yes)\n\n"
102
+ },
103
+ {
104
+ "start": 97.46,
105
+ "end": 102.8,
106
+ "text": "Baila, baila, hasta que me enamores, baby, tú\n"
107
+ },
108
+ {
109
+ "start": 102.8,
110
+ "end": 108.13,
111
+ "text": "Baila, baila, probaré tus sabores, baby, tú\n"
112
+ },
113
+ {
114
+ "start": 108.13,
115
+ "end": 113.46,
116
+ "text": "Baila, baila, enséñame tus colores, baby, tú\n"
117
+ },
118
+ {
119
+ "start": 113.46,
120
+ "end": 118.11,
121
+ "text": "Baila, baila, al beat de mi corazón\n\n"
122
+ },
123
+ {
124
+ "start": 140.08,
125
+ "end": 142.52,
126
+ "text": "Y a la luna llena le daremos calor\n"
127
+ },
128
+ {
129
+ "start": 142.71,
130
+ "end": 145.3,
131
+ "text": "Y esta noche entera pintará de colores\n"
132
+ },
133
+ {
134
+ "start": 145.46,
135
+ "end": 147.95,
136
+ "text": "Baby, tú me bailas y me llegan los temblores\n"
137
+ },
138
+ {
139
+ "start": 148.11,
140
+ "end": 150.75,
141
+ "text": "Porque con tus labios tú me das to's los sabores\n\n"
142
+ },
143
+ {
144
+ "start": 150.75,
145
+ "end": 153.17,
146
+ "text": "Sabes que este mundo no es lo mismo sin tu amor\n"
147
+ },
148
+ {
149
+ "start": 153.47,
150
+ "end": 155.9,
151
+ "text": "Dámelo todo, que yo lo acomodo\n"
152
+ },
153
+ {
154
+ "start": 156.11,
155
+ "end": 158.43,
156
+ "text": "Dámelo al max, que el mío lo tendrás\n"
157
+ },
158
+ {
159
+ "start": 158.61,
160
+ "end": 162.61,
161
+ "text": "Llenémonos de besos, que hoy somos traviesos en exceso\n\n"
162
+ },
163
+ {
164
+ "start": 164.79,
165
+ "end": 170.13,
166
+ "text": "Baila, baila, hasta que me enamores, baby, tú\n"
167
+ },
168
+ {
169
+ "start": 170.13,
170
+ "end": 175.47,
171
+ "text": "Baila, baila, probaré tus sabores, baby, tú\n"
172
+ },
173
+ {
174
+ "start": 175.47,
175
+ "end": 180.79,
176
+ "text": "Baila, baila, enséñame tus colores, baby, tú\n"
177
+ },
178
+ {
179
+ "start": 180.79,
180
+ "end": 185.54,
181
+ "text": "Baila, baila, al beat de mi corazón\n"
182
+ }
183
+ ]
184
+ }
alignment/Besando_Sapos_-_Dream_Tabu.json ADDED
@@ -0,0 +1,324 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 29.71,
5
+ "end": 31.37,
6
+ "text": "Esta es la ocasión\n"
7
+ },
8
+ {
9
+ "start": 31.77,
10
+ "end": 33.47,
11
+ "text": "De verte marchar\n"
12
+ },
13
+ {
14
+ "start": 33.8,
15
+ "end": 35.13,
16
+ "text": "Por fin viviré\n"
17
+ },
18
+ {
19
+ "start": 35.32,
20
+ "end": 37.42,
21
+ "text": "Por fin voy a luchar\n"
22
+ },
23
+ {
24
+ "start": 37.91,
25
+ "end": 39.52,
26
+ "text": "Mi vida sin ti\n"
27
+ },
28
+ {
29
+ "start": 39.98,
30
+ "end": 43.27,
31
+ "text": "Mi vida y nadie más\n\n"
32
+ },
33
+ {
34
+ "start": 46.12,
35
+ "end": 47.61,
36
+ "text": "Es el momento\n"
37
+ },
38
+ {
39
+ "start": 48.16,
40
+ "end": 49.91,
41
+ "text": "De verme triunfar\n"
42
+ },
43
+ {
44
+ "start": 50.23,
45
+ "end": 51.65,
46
+ "text": "De dejarte atrás\n"
47
+ },
48
+ {
49
+ "start": 51.65,
50
+ "end": 54.02,
51
+ "text": "Decir adiós sin más\n"
52
+ },
53
+ {
54
+ "start": 54.34,
55
+ "end": 56.02,
56
+ "text": "Lo nuestro está así\n"
57
+ },
58
+ {
59
+ "start": 56.39,
60
+ "end": 59.09,
61
+ "text": "¿Qué quieres de mí?\n\n"
62
+ },
63
+ {
64
+ "start": 62.47,
65
+ "end": 63.94,
66
+ "text": "Salió la verdad\n"
67
+ },
68
+ {
69
+ "start": 64.56,
70
+ "end": 66.26,
71
+ "text": "No me engañarás\n"
72
+ },
73
+ {
74
+ "start": 66.65,
75
+ "end": 68.04,
76
+ "text": "Yo quiero vivir\n"
77
+ },
78
+ {
79
+ "start": 68.16,
80
+ "end": 70.4,
81
+ "text": "Sin mirar atrás\n"
82
+ },
83
+ {
84
+ "start": 70.72,
85
+ "end": 72.44,
86
+ "text": "Lo nuestro acabó\n"
87
+ },
88
+ {
89
+ "start": 72.81,
90
+ "end": 75.8,
91
+ "text": "Asúmelo ya\n\n"
92
+ },
93
+ {
94
+ "start": 79.45,
95
+ "end": 81.23,
96
+ "text": "Besando sapos\n"
97
+ },
98
+ {
99
+ "start": 81.47,
100
+ "end": 83.54,
101
+ "text": "Paso la vida así\n"
102
+ },
103
+ {
104
+ "start": 83.54,
105
+ "end": 85.39,
106
+ "text": "Buscando al guapo\n"
107
+ },
108
+ {
109
+ "start": 85.59,
110
+ "end": 88.12,
111
+ "text": "Que me haga sonreír\n"
112
+ },
113
+ {
114
+ "start": 89.16,
115
+ "end": 91.58,
116
+ "text": "No sé quién me contó\n"
117
+ },
118
+ {
119
+ "start": 91.73,
120
+ "end": 93.99,
121
+ "text": "Que había un final feliz\n\n"
122
+ },
123
+ {
124
+ "start": 95.39,
125
+ "end": 97.02,
126
+ "text": "Creía que tú\n"
127
+ },
128
+ {
129
+ "start": 97.43,
130
+ "end": 98.96,
131
+ "text": "Eras especial\n"
132
+ },
133
+ {
134
+ "start": 99.47,
135
+ "end": 101.52,
136
+ "text": "Un hombre distinto\n"
137
+ },
138
+ {
139
+ "start": 101.52,
140
+ "end": 103.21,
141
+ "text": "A los demás\n"
142
+ },
143
+ {
144
+ "start": 103.53,
145
+ "end": 105.37,
146
+ "text": "Qué tonta que fui\n"
147
+ },
148
+ {
149
+ "start": 105.63,
150
+ "end": 108.58,
151
+ "text": "No entiendo qué te vi\n\n"
152
+ },
153
+ {
154
+ "start": 111.76,
155
+ "end": 113.56,
156
+ "text": "Perdí la esperanza\n"
157
+ },
158
+ {
159
+ "start": 113.82,
160
+ "end": 115.35,
161
+ "text": "De tanto esperar\n"
162
+ },
163
+ {
164
+ "start": 115.89,
165
+ "end": 117.52,
166
+ "text": "Alguien que me quiera\n"
167
+ },
168
+ {
169
+ "start": 117.52,
170
+ "end": 119.65,
171
+ "text": "Alguien de verdad\n"
172
+ },
173
+ {
174
+ "start": 119.97,
175
+ "end": 121.78,
176
+ "text": "Qué mal verme así\n"
177
+ },
178
+ {
179
+ "start": 122.04,
180
+ "end": 124.68,
181
+ "text": "Tengo que espabilar\n\n"
182
+ },
183
+ {
184
+ "start": 128.2,
185
+ "end": 129.7,
186
+ "text": "Vuelve a suceder\n"
187
+ },
188
+ {
189
+ "start": 130.21,
190
+ "end": 131.78,
191
+ "text": "La historia de ayer\n"
192
+ },
193
+ {
194
+ "start": 132.28,
195
+ "end": 133.83,
196
+ "text": "Tengo que aprender\n"
197
+ },
198
+ {
199
+ "start": 133.83,
200
+ "end": 135.75,
201
+ "text": "No lo puedo creer\n"
202
+ },
203
+ {
204
+ "start": 136.11,
205
+ "end": 137.9,
206
+ "text": "Que me pase a mí\n"
207
+ },
208
+ {
209
+ "start": 138.18,
210
+ "end": 142.36,
211
+ "text": "Que me pase otra vez\n\n"
212
+ },
213
+ {
214
+ "start": 145.07,
215
+ "end": 146.78,
216
+ "text": "Besando sapos\n"
217
+ },
218
+ {
219
+ "start": 147.13,
220
+ "end": 149.22,
221
+ "text": "Paso la vida así\n"
222
+ },
223
+ {
224
+ "start": 149.22,
225
+ "end": 151.01,
226
+ "text": "Buscando al guapo\n"
227
+ },
228
+ {
229
+ "start": 151.25,
230
+ "end": 153.86,
231
+ "text": "Que me haga sonreír\n"
232
+ },
233
+ {
234
+ "start": 154.77,
235
+ "end": 157.15,
236
+ "text": "No sé quién me contó\n"
237
+ },
238
+ {
239
+ "start": 157.31,
240
+ "end": 159.55,
241
+ "text": "Que había un final feliz\n"
242
+ },
243
+ {
244
+ "start": 159.75,
245
+ "end": 163.34,
246
+ "text": "Un final feliz\n\n"
247
+ },
248
+ {
249
+ "start": 167.68,
250
+ "end": 169.48,
251
+ "text": "Besando sapos\n"
252
+ },
253
+ {
254
+ "start": 184.02,
255
+ "end": 185.86,
256
+ "text": "Besando sapos\n\n"
257
+ },
258
+ {
259
+ "start": 188.11,
260
+ "end": 189.74,
261
+ "text": "Besando sapos\n"
262
+ },
263
+ {
264
+ "start": 190.11,
265
+ "end": 192.29,
266
+ "text": "Paso la vida así\n"
267
+ },
268
+ {
269
+ "start": 192.29,
270
+ "end": 194.01,
271
+ "text": "Buscando al guapo\n"
272
+ },
273
+ {
274
+ "start": 194.32,
275
+ "end": 196.88,
276
+ "text": "Que me haga sonreír\n"
277
+ },
278
+ {
279
+ "start": 197.88,
280
+ "end": 200.24,
281
+ "text": "No sé quién me contó\n"
282
+ },
283
+ {
284
+ "start": 200.5,
285
+ "end": 202.98,
286
+ "text": "Que había un final feliz\n\n"
287
+ },
288
+ {
289
+ "start": 220.96,
290
+ "end": 222.76,
291
+ "text": "Besando sapos\n"
292
+ },
293
+ {
294
+ "start": 223.04,
295
+ "end": 225.05,
296
+ "text": "Paso la vida así\n"
297
+ },
298
+ {
299
+ "start": 225.05,
300
+ "end": 226.84,
301
+ "text": "Buscando al guapo\n"
302
+ },
303
+ {
304
+ "start": 227.16,
305
+ "end": 229.85,
306
+ "text": "Que me haga sonreír\n"
307
+ },
308
+ {
309
+ "start": 230.7,
310
+ "end": 233.01,
311
+ "text": "No sé quién me contó\n"
312
+ },
313
+ {
314
+ "start": 233.25,
315
+ "end": 235.29,
316
+ "text": "Que había un final feliz\n"
317
+ },
318
+ {
319
+ "start": 235.61,
320
+ "end": 238.78,
321
+ "text": "Un final feliz\n"
322
+ }
323
+ ]
324
+ }
alignment/Bitte_beweg_dich_nicht_-_Bukto.json ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 20.25,
5
+ "end": 25.54,
6
+ "text": "Du bist es nicht, die so sehr für eine Sache brennt\n"
7
+ },
8
+ {
9
+ "start": 25.64,
10
+ "end": 30.98,
11
+ "text": "Dass man sie hinterher vor lauter Ruß nicht wiedererkennt\n"
12
+ },
13
+ {
14
+ "start": 31.78,
15
+ "end": 36.05,
16
+ "text": "Du stehst nicht unter Strom, zumindest nicht permanent\n"
17
+ },
18
+ {
19
+ "start": 36.23,
20
+ "end": 41.46,
21
+ "text": "Auch für die kleinen Dinge bleiben dir immer noch ein paar Prozent\n"
22
+ },
23
+ {
24
+ "start": 41.61,
25
+ "end": 46.91,
26
+ "text": "Du bist es nicht, die gern etwas auf sich beruhen lässt\n"
27
+ },
28
+ {
29
+ "start": 46.91,
30
+ "end": 52.21,
31
+ "text": "Oder die schon bevor das Licht angeht den Kinosaal verlässt\n"
32
+ },
33
+ {
34
+ "start": 52.63,
35
+ "end": 57.62,
36
+ "text": "Was sich festzuhalten lohnt, lässt du nicht einfach ziehen\n"
37
+ },
38
+ {
39
+ "start": 57.62,
40
+ "end": 63.14,
41
+ "text": "Du hörst den Sternen dann nur zu, wenn sie es sich wirklich verdienen\n\n"
42
+ },
43
+ {
44
+ "start": 64.22,
45
+ "end": 68.31,
46
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
47
+ },
48
+ {
49
+ "start": 69.57,
50
+ "end": 74.28,
51
+ "text": "Was du auch anstellst, tust du mit Grazie und Stil\n"
52
+ },
53
+ {
54
+ "start": 74.28,
55
+ "end": 79.7,
56
+ "text": "Dein guter Geschmack ist unbestreitbar und er spricht für sich\n"
57
+ },
58
+ {
59
+ "start": 80.27,
60
+ "end": 83.34,
61
+ "text": "Bitte beweg dich nicht\n"
62
+ },
63
+ {
64
+ "start": 85.59,
65
+ "end": 88.57,
66
+ "text": "Bitte beweg dich nicht\n\n"
67
+ },
68
+ {
69
+ "start": 92.21,
70
+ "end": 97.98,
71
+ "text": "Du hast ein wachsames Auge, ein verständnisvolles Ohr\n"
72
+ },
73
+ {
74
+ "start": 98.47,
75
+ "end": 103.0,
76
+ "text": "Die Fehler der Vergangenheit hältst du mir nur selten vor\n"
77
+ },
78
+ {
79
+ "start": 103.0,
80
+ "end": 108.26,
81
+ "text": "Du bist mein Groupie, Fan und Kritiker in Personalunion\n"
82
+ },
83
+ {
84
+ "start": 108.26,
85
+ "end": 113.91,
86
+ "text": "Wer kann das schon von sich behaupten? Ich kann behaupt'n, ich kann das schon\n"
87
+ },
88
+ {
89
+ "start": 114.42,
90
+ "end": 118.96,
91
+ "text": "So manche Schnapsidee hast du mir um die Ohr'n gehaun\n"
92
+ },
93
+ {
94
+ "start": 118.96,
95
+ "end": 124.65,
96
+ "text": "Wenn ich vor diesen Viechern nicht so viel Respekt hätte, würde ich mit dir auch Pferde klauen\n\n"
97
+ },
98
+ {
99
+ "start": 125.58,
100
+ "end": 129.92,
101
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
102
+ },
103
+ {
104
+ "start": 130.9,
105
+ "end": 135.61,
106
+ "text": "Was du auch anstellst, tust du mit Grazie und Stil\n"
107
+ },
108
+ {
109
+ "start": 135.61,
110
+ "end": 141.28,
111
+ "text": "Dein guter Geschmack ist unbestreitbar und er spricht für sich\n"
112
+ },
113
+ {
114
+ "start": 141.6,
115
+ "end": 144.57,
116
+ "text": "Bitte beweg dich nicht\n"
117
+ },
118
+ {
119
+ "start": 146.89,
120
+ "end": 149.77,
121
+ "text": "Bitte beweg dich nicht\n\n"
122
+ },
123
+ {
124
+ "start": 191.18,
125
+ "end": 196.14,
126
+ "text": "Stolperst du über deine Träume, helfe ich dir wieder auf\n"
127
+ },
128
+ {
129
+ "start": 196.38,
130
+ "end": 201.81,
131
+ "text": "Ein blaues Auge und verschrammte Knie nehm' ich dafür gern in Kauf\n"
132
+ },
133
+ {
134
+ "start": 202.5,
135
+ "end": 207.1,
136
+ "text": "Ich halt dich an der Leine, wenn dein Kopf über den Wolken schwebt\n"
137
+ },
138
+ {
139
+ "start": 207.24,
140
+ "end": 212.57,
141
+ "text": "Und ich lass mich mit dir treiben, während unter uns die Erde bebt\n\n"
142
+ },
143
+ {
144
+ "start": 213.55,
145
+ "end": 218.0,
146
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
147
+ },
148
+ {
149
+ "start": 218.94,
150
+ "end": 223.63,
151
+ "text": "Was du auch anstellst, tust du mit Grazie und Stil\n"
152
+ },
153
+ {
154
+ "start": 223.63,
155
+ "end": 229.23,
156
+ "text": "Dein guter Geschmack ist unbestreitbar und er spricht für sich\n"
157
+ },
158
+ {
159
+ "start": 229.61,
160
+ "end": 232.74,
161
+ "text": "Bitte beweg dich nicht\n\n"
162
+ },
163
+ {
164
+ "start": 234.89,
165
+ "end": 240.23,
166
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
167
+ },
168
+ {
169
+ "start": 240.23,
170
+ "end": 245.53,
171
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
172
+ },
173
+ {
174
+ "start": 245.53,
175
+ "end": 250.8,
176
+ "text": "So wie du bist, bist du genau, wie ich dich will\n"
177
+ },
178
+ {
179
+ "start": 250.92,
180
+ "end": 254.21,
181
+ "text": "Bitte beweg dich nicht\n"
182
+ },
183
+ {
184
+ "start": 256.24,
185
+ "end": 259.5,
186
+ "text": "Bitte beweg dich nicht\n"
187
+ }
188
+ ]
189
+ }
alignment/Burn_Out_Man_-_Abendblau.json ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 3.55,
5
+ "end": 7.28,
6
+ "text": "Mannomann, am Ende des Tages ist immer noch Arbeit übrig\n\n"
7
+ },
8
+ {
9
+ "start": 9.49,
10
+ "end": 13.42,
11
+ "text": "Wenn andere ihre Kinder betten\n"
12
+ },
13
+ {
14
+ "start": 13.96,
15
+ "end": 17.08,
16
+ "text": "Brennt im Büro ein Licht\n"
17
+ },
18
+ {
19
+ "start": 17.74,
20
+ "end": 21.38,
21
+ "text": "Man sieht dich dort die Firma retten\n"
22
+ },
23
+ {
24
+ "start": 21.79,
25
+ "end": 25.25,
26
+ "text": "Die sonst zusammenbricht\n\n"
27
+ },
28
+ {
29
+ "start": 26.07,
30
+ "end": 28.23,
31
+ "text": "Na ja, Kollege, einer muss sich ja darum kümmern\n\n"
32
+ },
33
+ {
34
+ "start": 33.86,
35
+ "end": 40.5,
36
+ "text": "Es ist noch Arbeit übrig, du hasts noch nicht geschafft\n"
37
+ },
38
+ {
39
+ "start": 41.65,
40
+ "end": 48.86,
41
+ "text": "Du musst die Welt noch retten, sonst wird sie hingerafft\n\n"
42
+ },
43
+ {
44
+ "start": 49.58,
45
+ "end": 50.78,
46
+ "text": "Ich kann machen, was ich will\n"
47
+ },
48
+ {
49
+ "start": 51.28,
50
+ "end": 53.39,
51
+ "text": "Am Ende der Woche ist auch noch Arbeit übrig\n\n"
52
+ },
53
+ {
54
+ "start": 56.99,
55
+ "end": 59.11,
56
+ "text": "Andere hüten Kinder\n"
57
+ },
58
+ {
59
+ "start": 60.41,
60
+ "end": 63.0,
61
+ "text": "Du hast nicht mal einen Hund\n"
62
+ },
63
+ {
64
+ "start": 64.01,
65
+ "end": 67.11,
66
+ "text": "Du brauchst auch keine Wohnung\n"
67
+ },
68
+ {
69
+ "start": 67.96,
70
+ "end": 72.09,
71
+ "text": "Büroschlaf ist ja so gesund\n\n"
72
+ },
73
+ {
74
+ "start": 72.62,
75
+ "end": 75.7,
76
+ "text": "Sonst ist ja keiner mehr da, ihr braucht mich doch!\n\n"
77
+ },
78
+ {
79
+ "start": 80.66,
80
+ "end": 87.37,
81
+ "text": "Es ist noch Arbeit übrig, du hasts noch nicht geschafft\n"
82
+ },
83
+ {
84
+ "start": 88.46,
85
+ "end": 95.13,
86
+ "text": "Du musst die Welt noch retten, sonst wird sie hingerafft\n"
87
+ },
88
+ {
89
+ "start": 95.28,
90
+ "end": 97.34,
91
+ "text": "Burnout-Man\n\n"
92
+ },
93
+ {
94
+ "start": 98.7,
95
+ "end": 100.97,
96
+ "text": "Am Tag vor dem Urlaub ist auch noch Arbeit übrig!\n\n"
97
+ },
98
+ {
99
+ "start": 103.7,
100
+ "end": 105.88,
101
+ "text": "Andere packen Koffer\n"
102
+ },
103
+ {
104
+ "start": 107.22,
105
+ "end": 110.31,
106
+ "text": "Du stornierst den Flug\n"
107
+ },
108
+ {
109
+ "start": 110.88,
110
+ "end": 114.13,
111
+ "text": "Die wichtige Bestellung\n"
112
+ },
113
+ {
114
+ "start": 114.98,
115
+ "end": 119.41,
116
+ "text": "Kommt sonst nicht mehr zum Zug\n\n"
117
+ },
118
+ {
119
+ "start": 119.81,
120
+ "end": 122.39,
121
+ "text": "Übernimmt denn hier keiner außer mir Verantwortung?\n\n"
122
+ },
123
+ {
124
+ "start": 127.55,
125
+ "end": 134.55,
126
+ "text": "Es ist noch Arbeit übrig, du hasts noch nicht geschafft\n"
127
+ },
128
+ {
129
+ "start": 135.28,
130
+ "end": 141.51,
131
+ "text": "Du musst die Welt noch retten, sonst wird sie hingerafft\n"
132
+ },
133
+ {
134
+ "start": 141.59,
135
+ "end": 144.19,
136
+ "text": "Oh, Burnout-Man\n\n"
137
+ },
138
+ {
139
+ "start": 145.03,
140
+ "end": 147.15,
141
+ "text": "Kurz vor der Rente ist auch noch Arbeit übrig!\n\n"
142
+ },
143
+ {
144
+ "start": 150.52,
145
+ "end": 152.97,
146
+ "text": "Andere mähen schon Rasen\n"
147
+ },
148
+ {
149
+ "start": 153.57,
150
+ "end": 156.9,
151
+ "text": "Aber du bist noch im Amt\n"
152
+ },
153
+ {
154
+ "start": 158.43,
155
+ "end": 160.63,
156
+ "text": "Denn du musst noch was schaffen\n"
157
+ },
158
+ {
159
+ "start": 161.84,
160
+ "end": 165.75,
161
+ "text": "Dazu bist du verdammt\n\n"
162
+ },
163
+ {
164
+ "start": 166.74,
165
+ "end": 170.93,
166
+ "text": "Mir wirds ja auch zu viel, aber wir können doch nicht alles den Bach runtergehen lassen\n\n"
167
+ },
168
+ {
169
+ "start": 174.28,
170
+ "end": 181.41,
171
+ "text": "Es ist noch Arbeit übrig, du hasts noch nicht geschafft\n"
172
+ },
173
+ {
174
+ "start": 182.13,
175
+ "end": 188.76,
176
+ "text": "Du musst die Welt noch retten, sonst wird sie hingerafft\n"
177
+ },
178
+ {
179
+ "start": 189.01,
180
+ "end": 190.89,
181
+ "text": "Burnout-Man\n\n"
182
+ },
183
+ {
184
+ "start": 191.78,
185
+ "end": 194.4,
186
+ "text": "Am Ende des Lebens ist auch noch Arbeit übrig\n\n"
187
+ },
188
+ {
189
+ "start": 197.41,
190
+ "end": 199.61,
191
+ "text": "Andere dürfen schon modern\n"
192
+ },
193
+ {
194
+ "start": 200.34,
195
+ "end": 203.85,
196
+ "text": "Aber du bist noch nicht tot\n"
197
+ },
198
+ {
199
+ "start": 204.58,
200
+ "end": 207.79,
201
+ "text": "Die Welt, die braucht dich immer noch\n"
202
+ },
203
+ {
204
+ "start": 208.4,
205
+ "end": 211.19,
206
+ "text": "Als Retter in der Not\n\n"
207
+ },
208
+ {
209
+ "start": 213.2,
210
+ "end": 217.19,
211
+ "text": "Begrabt mich mit meinem Laptop! Ich muss noch meine Mails checken\n\n"
212
+ },
213
+ {
214
+ "start": 221.14,
215
+ "end": 228.19,
216
+ "text": "Es ist noch Arbeit übrig, du hasts noch nicht geschafft\n"
217
+ },
218
+ {
219
+ "start": 228.89,
220
+ "end": 235.13,
221
+ "text": "Du musst die Welt noch retten, sonst wird sie hingerafft\n\n"
222
+ },
223
+ {
224
+ "start": 235.22,
225
+ "end": 239.54,
226
+ "text": "Oh, Burnout-Man\n"
227
+ },
228
+ {
229
+ "start": 239.69,
230
+ "end": 241.21,
231
+ "text": "Burnout-Man\n"
232
+ },
233
+ {
234
+ "start": 242.26,
235
+ "end": 243.31,
236
+ "text": "Burnout-Man\n"
237
+ },
238
+ {
239
+ "start": 245.75,
240
+ "end": 247.96,
241
+ "text": "Burnout-Man\n"
242
+ },
243
+ {
244
+ "start": 249.69,
245
+ "end": 251.81,
246
+ "text": "Burnout-Man\n"
247
+ }
248
+ ]
249
+ }
alignment/CHRISTMAS_AVEC_TOI_-_imfreshyourepretty.json ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 7.16,
5
+ "end": 10.08,
6
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
7
+ },
8
+ {
9
+ "start": 10.5,
10
+ "end": 13.4,
11
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
12
+ },
13
+ {
14
+ "start": 13.82,
15
+ "end": 16.74,
16
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
17
+ },
18
+ {
19
+ "start": 17.15,
20
+ "end": 20.08,
21
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n\n"
22
+ },
23
+ {
24
+ "start": 20.46,
25
+ "end": 23.27,
26
+ "text": "Quand vient l'hiver, je l'attends\n"
27
+ },
28
+ {
29
+ "start": 23.82,
30
+ "end": 26.71,
31
+ "text": "Comme les cloches sonnent en automne\n"
32
+ },
33
+ {
34
+ "start": 27.14,
35
+ "end": 29.99,
36
+ "text": "Sur cet air, je m'émerveille\n"
37
+ },
38
+ {
39
+ "start": 30.48,
40
+ "end": 33.36,
41
+ "text": "Quand viennent les souhaits que je fredonne\n"
42
+ },
43
+ {
44
+ "start": 33.82,
45
+ "end": 36.8,
46
+ "text": "Une mélodie de Noël\n"
47
+ },
48
+ {
49
+ "start": 37.16,
50
+ "end": 40.14,
51
+ "text": "Pour des nostalgies d'enfance\n"
52
+ },
53
+ {
54
+ "start": 40.46,
55
+ "end": 43.4,
56
+ "text": "Juste un regard vers le ciel\n"
57
+ },
58
+ {
59
+ "start": 43.82,
60
+ "end": 46.83,
61
+ "text": "Toi et moi quand j'y repense\n"
62
+ },
63
+ {
64
+ "start": 47.14,
65
+ "end": 49.89,
66
+ "text": "J'attendrai si il le faut\n"
67
+ },
68
+ {
69
+ "start": 50.5,
70
+ "end": 53.21,
71
+ "text": "Un couplet et quelques vœux\n"
72
+ },
73
+ {
74
+ "start": 53.81,
75
+ "end": 56.66,
76
+ "text": "Ce soir quand il fera chaud\n"
77
+ },
78
+ {
79
+ "start": 57.15,
80
+ "end": 60.39,
81
+ "text": "Quelques heures au coin du feu\n\n"
82
+ },
83
+ {
84
+ "start": 63.79,
85
+ "end": 66.71,
86
+ "text": "Christmas, Christmas\n"
87
+ },
88
+ {
89
+ "start": 66.93,
90
+ "end": 69.77,
91
+ "text": "All I want is only you\n"
92
+ },
93
+ {
94
+ "start": 70.47,
95
+ "end": 73.35,
96
+ "text": "Christmas, Christmas\n"
97
+ },
98
+ {
99
+ "start": 73.59,
100
+ "end": 76.47,
101
+ "text": "Notre amour en rendez-vous\n\n"
102
+ },
103
+ {
104
+ "start": 77.14,
105
+ "end": 80.09,
106
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
107
+ },
108
+ {
109
+ "start": 80.48,
110
+ "end": 83.43,
111
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
112
+ },
113
+ {
114
+ "start": 83.81,
115
+ "end": 86.73,
116
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
117
+ },
118
+ {
119
+ "start": 87.15,
120
+ "end": 90.06,
121
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n\n"
122
+ },
123
+ {
124
+ "start": 90.48,
125
+ "end": 93.32,
126
+ "text": "Quand vient l'hiver, je l'attends\n"
127
+ },
128
+ {
129
+ "start": 93.78,
130
+ "end": 96.73,
131
+ "text": "Comme les cloches sonnent en automne\n"
132
+ },
133
+ {
134
+ "start": 97.13,
135
+ "end": 100.29,
136
+ "text": "Sur cet air, je m'émerveille\n"
137
+ },
138
+ {
139
+ "start": 100.46,
140
+ "end": 103.5,
141
+ "text": "Quand viennent les souhaits que je fredonne\n"
142
+ },
143
+ {
144
+ "start": 103.82,
145
+ "end": 106.75,
146
+ "text": "Une mélodie de Noël\n"
147
+ },
148
+ {
149
+ "start": 107.15,
150
+ "end": 110.17,
151
+ "text": "Pour des nostalgies d'enfance\n"
152
+ },
153
+ {
154
+ "start": 110.48,
155
+ "end": 113.36,
156
+ "text": "Juste un regard vers le ciel\n"
157
+ },
158
+ {
159
+ "start": 113.82,
160
+ "end": 116.84,
161
+ "text": "Toi et moi quand j'y repense\n"
162
+ },
163
+ {
164
+ "start": 117.16,
165
+ "end": 120.22,
166
+ "text": "J'attendrai si il le faut\n"
167
+ },
168
+ {
169
+ "start": 120.48,
170
+ "end": 123.2,
171
+ "text": "Un couplet et quelques vœux\n"
172
+ },
173
+ {
174
+ "start": 123.82,
175
+ "end": 126.9,
176
+ "text": "Ce soir quand il fera chaud\n"
177
+ },
178
+ {
179
+ "start": 127.14,
180
+ "end": 130.02,
181
+ "text": "Quelques heures au coin du feu\n"
182
+ },
183
+ {
184
+ "start": 130.47,
185
+ "end": 133.44,
186
+ "text": "Un seul souhait, oui, j'aimerais\n\n"
187
+ },
188
+ {
189
+ "start": 133.81,
190
+ "end": 136.72,
191
+ "text": "Merry Christmas everyday\n"
192
+ },
193
+ {
194
+ "start": 137.14,
195
+ "end": 140.22,
196
+ "text": "Te revoir même qu'une fois\n"
197
+ },
198
+ {
199
+ "start": 140.47,
200
+ "end": 143.44,
201
+ "text": "Christmas, Christmas avec toi\n"
202
+ },
203
+ {
204
+ "start": 143.81,
205
+ "end": 146.94,
206
+ "text": "J'attendrai jusqu'au matin\n"
207
+ },
208
+ {
209
+ "start": 147.14,
210
+ "end": 150.26,
211
+ "text": "Un happy end, un refrain\n\n"
212
+ },
213
+ {
214
+ "start": 150.48,
215
+ "end": 153.25,
216
+ "text": "Christmas, Christmas\n"
217
+ },
218
+ {
219
+ "start": 153.6,
220
+ "end": 156.3,
221
+ "text": "All I want is only you\n"
222
+ },
223
+ {
224
+ "start": 157.13,
225
+ "end": 159.99,
226
+ "text": "Christmas, Christmas\n"
227
+ },
228
+ {
229
+ "start": 160.27,
230
+ "end": 163.01,
231
+ "text": "Notre amour en rendez-vous\n"
232
+ },
233
+ {
234
+ "start": 163.81,
235
+ "end": 166.63,
236
+ "text": "Christmas, Christmas\n"
237
+ },
238
+ {
239
+ "start": 166.93,
240
+ "end": 169.7,
241
+ "text": "All I want is only you\n"
242
+ },
243
+ {
244
+ "start": 170.47,
245
+ "end": 173.31,
246
+ "text": "Christmas, Christmas\n"
247
+ },
248
+ {
249
+ "start": 173.59,
250
+ "end": 176.32,
251
+ "text": "Un regard, quelques mots doux\n\n"
252
+ },
253
+ {
254
+ "start": 177.13,
255
+ "end": 180.07,
256
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
257
+ },
258
+ {
259
+ "start": 180.48,
260
+ "end": 183.38,
261
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
262
+ },
263
+ {
264
+ "start": 183.8,
265
+ "end": 186.74,
266
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
267
+ },
268
+ {
269
+ "start": 187.14,
270
+ "end": 190.07,
271
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
272
+ },
273
+ {
274
+ "start": 190.47,
275
+ "end": 193.4,
276
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n"
277
+ },
278
+ {
279
+ "start": 193.8,
280
+ "end": 196.75,
281
+ "text": "Ouh-ah-ah, ouh-ah-ah, ouh-ah-ah\n\n"
282
+ },
283
+ {
284
+ "start": 197.13,
285
+ "end": 199.99,
286
+ "text": "Christmas, Christmas\n"
287
+ },
288
+ {
289
+ "start": 200.26,
290
+ "end": 202.99,
291
+ "text": "All I want is only you\n"
292
+ },
293
+ {
294
+ "start": 203.81,
295
+ "end": 206.71,
296
+ "text": "Christmas, Christmas\n"
297
+ },
298
+ {
299
+ "start": 206.93,
300
+ "end": 209.67,
301
+ "text": "Notre amour en rendez-vous\n"
302
+ },
303
+ {
304
+ "start": 210.47,
305
+ "end": 213.33,
306
+ "text": "Christmas, Christmas\n"
307
+ },
308
+ {
309
+ "start": 213.6,
310
+ "end": 216.33,
311
+ "text": "All I want is only you\n"
312
+ },
313
+ {
314
+ "start": 217.15,
315
+ "end": 220.04,
316
+ "text": "Christmas, Christmas\n"
317
+ },
318
+ {
319
+ "start": 220.26,
320
+ "end": 223.15,
321
+ "text": "All I want is only you\n"
322
+ },
323
+ {
324
+ "start": 223.83,
325
+ "end": 226.68,
326
+ "text": "Christmas, Christmas\n"
327
+ },
328
+ {
329
+ "start": 226.93,
330
+ "end": 229.62,
331
+ "text": "Un regard, quelques mots doux\n"
332
+ }
333
+ ]
334
+ }
alignment/CLUB_DESTINO__-_Pensando_en_ti_-_CLUB_DESTINO.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 60.49,
5
+ "end": 62.69,
6
+ "text": "Deja que te cuente\n"
7
+ },
8
+ {
9
+ "start": 63.73,
10
+ "end": 65.91,
11
+ "text": "Deja que te diga\n"
12
+ },
13
+ {
14
+ "start": 67.29,
15
+ "end": 70.59,
16
+ "text": "Que tengo miedo de volver\n\n"
17
+ },
18
+ {
19
+ "start": 73.51,
20
+ "end": 75.96,
21
+ "text": "Aunque yo te quiera\n"
22
+ },
23
+ {
24
+ "start": 76.75,
25
+ "end": 79.32,
26
+ "text": "Aunque seas mi vida\n"
27
+ },
28
+ {
29
+ "start": 80.18,
30
+ "end": 84.42,
31
+ "text": "Solo me acuerdo del ayer\n\n"
32
+ },
33
+ {
34
+ "start": 86.86,
35
+ "end": 89.78,
36
+ "text": "Cuando tus miradas eran distintas\n"
37
+ },
38
+ {
39
+ "start": 89.88,
40
+ "end": 92.86,
41
+ "text": "Cuando tus palabras me hacían sufrir\n"
42
+ },
43
+ {
44
+ "start": 93.12,
45
+ "end": 96.25,
46
+ "text": "Cuando por tenerte hubiese dado mi vida\n"
47
+ },
48
+ {
49
+ "start": 96.3,
50
+ "end": 99.37,
51
+ "text": "Cuando te alejabas poco a poco de mí\n\n"
52
+ },
53
+ {
54
+ "start": 99.37,
55
+ "end": 102.7,
56
+ "text": "Y ahora estás solo y gritas al cielo\n"
57
+ },
58
+ {
59
+ "start": 102.88,
60
+ "end": 105.83,
61
+ "text": "Que tú sin mis besos no sabes vivir\n"
62
+ },
63
+ {
64
+ "start": 106.09,
65
+ "end": 109.13,
66
+ "text": "Mas quiero que sepas que todo este tiempo\n"
67
+ },
68
+ {
69
+ "start": 109.35,
70
+ "end": 116.47,
71
+ "text": "Ha sido un infierno y que vivo tan solo pensando en ti\n\n"
72
+ },
73
+ {
74
+ "start": 131.86,
75
+ "end": 134.11,
76
+ "text": "Si al final volvemos\n"
77
+ },
78
+ {
79
+ "start": 135.0,
80
+ "end": 137.47,
81
+ "text": "No será lo mismo\n"
82
+ },
83
+ {
84
+ "start": 138.61,
85
+ "end": 142.12,
86
+ "text": "Hemos cambiado, yo lo sé\n\n"
87
+ },
88
+ {
89
+ "start": 144.63,
90
+ "end": 147.31,
91
+ "text": "Razones que no cesan\n"
92
+ },
93
+ {
94
+ "start": 148.1,
95
+ "end": 150.74,
96
+ "text": "Besos compartidos\n"
97
+ },
98
+ {
99
+ "start": 151.5,
100
+ "end": 155.53,
101
+ "text": "Miedos que vuelven a nacer\n\n"
102
+ },
103
+ {
104
+ "start": 158.2,
105
+ "end": 161.32,
106
+ "text": "Cuando tus miradas eran distintas\n"
107
+ },
108
+ {
109
+ "start": 161.32,
110
+ "end": 164.19,
111
+ "text": "Cuando tus palabras me hacían sufrir\n"
112
+ },
113
+ {
114
+ "start": 164.51,
115
+ "end": 167.68,
116
+ "text": "Cuando por tenerte hubiese dado mi vida\n"
117
+ },
118
+ {
119
+ "start": 167.76,
120
+ "end": 170.94,
121
+ "text": "Cuando te alejabas poco a poco de mí\n\n"
122
+ },
123
+ {
124
+ "start": 170.94,
125
+ "end": 174.07,
126
+ "text": "Y ahora estás solo y gritas al cielo\n"
127
+ },
128
+ {
129
+ "start": 174.23,
130
+ "end": 177.22,
131
+ "text": "Que tú sin mis besos no sabes vivir\n"
132
+ },
133
+ {
134
+ "start": 177.48,
135
+ "end": 180.59,
136
+ "text": "Mas quiero que sepas que todo este tiempo\n"
137
+ },
138
+ {
139
+ "start": 180.76,
140
+ "end": 187.55,
141
+ "text": "Ha sido un infierno y que vivo tan solo pensando en ti\n\n"
142
+ },
143
+ {
144
+ "start": 188.19,
145
+ "end": 190.62,
146
+ "text": "No, no, no, no, no\n"
147
+ },
148
+ {
149
+ "start": 191.85,
150
+ "end": 194.11,
151
+ "text": "Pensando en ti\n"
152
+ },
153
+ {
154
+ "start": 194.68,
155
+ "end": 197.12,
156
+ "text": "No, no, no, no, no\n"
157
+ },
158
+ {
159
+ "start": 198.34,
160
+ "end": 200.55,
161
+ "text": "Pensando en ti\n"
162
+ },
163
+ {
164
+ "start": 201.16,
165
+ "end": 204.01,
166
+ "text": "No, no, no, no, no\n"
167
+ },
168
+ {
169
+ "start": 204.84,
170
+ "end": 207.12,
171
+ "text": "Pensando en ti\n"
172
+ },
173
+ {
174
+ "start": 207.65,
175
+ "end": 210.67,
176
+ "text": "No, no, no, no, no\n"
177
+ },
178
+ {
179
+ "start": 212.93,
180
+ "end": 215.33,
181
+ "text": "Pensando en ti\n"
182
+ }
183
+ ]
184
+ }
alignment/Cafe_Jenseitz_Bebelstraße_-_kangaroo.musique.json ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 47.58,
5
+ "end": 50.61,
6
+ "text": "Wo gibts den besten Milchkaffee\n"
7
+ },
8
+ {
9
+ "start": 53.82,
10
+ "end": 56.64,
11
+ "text": "Himbeer- oder Rooibuschtee?\n"
12
+ },
13
+ {
14
+ "start": 59.51,
15
+ "end": 63.33,
16
+ "text": "Wo gibt es Frühstück bis nach zwei?\n"
17
+ },
18
+ {
19
+ "start": 64.95,
20
+ "end": 67.13,
21
+ "text": "Im Café Jenseitz\n\n"
22
+ },
23
+ {
24
+ "start": 71.53,
25
+ "end": 74.7,
26
+ "text": "Wo wird man immer nett begrüßt\n"
27
+ },
28
+ {
29
+ "start": 77.53,
30
+ "end": 80.54,
31
+ "text": "Wo tuckt der Chef in der Kombüs'\n"
32
+ },
33
+ {
34
+ "start": 83.58,
35
+ "end": 87.46,
36
+ "text": "Wo sieht man dir gern auf dein Teil\n"
37
+ },
38
+ {
39
+ "start": 88.95,
40
+ "end": 90.91,
41
+ "text": "Im Café Jenseitz\n\n"
42
+ },
43
+ {
44
+ "start": 95.57,
45
+ "end": 98.42,
46
+ "text": "Wo dreht man gleich den Kopf zurück\n"
47
+ },
48
+ {
49
+ "start": 101.49,
50
+ "end": 105.2,
51
+ "text": "Nur weil ein Gast die Klinke drückt\n"
52
+ },
53
+ {
54
+ "start": 107.53,
55
+ "end": 110.63,
56
+ "text": "Wo sitzt man gerne auch zu zweit\n"
57
+ },
58
+ {
59
+ "start": 113.0,
60
+ "end": 115.1,
61
+ "text": "Im Café Jenseitz\n\n"
62
+ },
63
+ {
64
+ "start": 119.51,
65
+ "end": 122.59,
66
+ "text": "Wo gibt es Bowle mal umsonst\n"
67
+ },
68
+ {
69
+ "start": 125.44,
70
+ "end": 129.36,
71
+ "text": "Wenn du zur Grand Prix Party kommst\n"
72
+ },
73
+ {
74
+ "start": 131.43,
75
+ "end": 135.18,
76
+ "text": "Wo kassierst du 60 Euro dann\n"
77
+ },
78
+ {
79
+ "start": 136.82,
80
+ "end": 138.96,
81
+ "text": "Im Café Jenseitz\n"
82
+ },
83
+ {
84
+ "start": 140.57,
85
+ "end": 143.97,
86
+ "text": "Das Café für den Mann\n"
87
+ }
88
+ ]
89
+ }
alignment/Capotes_à_un_Franc_-_elmanu.json ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 19.68,
5
+ "end": 22.0,
6
+ "text": "Salut mon grand, comment ça va ?\n"
7
+ },
8
+ {
9
+ "start": 22.39,
10
+ "end": 24.31,
11
+ "text": "Ça faisait longtemps que j't'avais pas\n"
12
+ },
13
+ {
14
+ "start": 24.31,
15
+ "end": 27.67,
16
+ "text": "Envoyé une petite lettre, c'est pas évident\n"
17
+ },
18
+ {
19
+ "start": 28.87,
20
+ "end": 31.11,
21
+ "text": "Tu sais, j'ai beau leur demander\n"
22
+ },
23
+ {
24
+ "start": 31.6,
25
+ "end": 33.45,
26
+ "text": "Ils font la gueule au PTT\n"
27
+ },
28
+ {
29
+ "start": 33.45,
30
+ "end": 36.83,
31
+ "text": "Le code postal du Paradis n'est pas courant\n\n"
32
+ },
33
+ {
34
+ "start": 37.97,
35
+ "end": 42.47,
36
+ "text": "Mais je me dis que maintenant que les capotes sont à un franc\n"
37
+ },
38
+ {
39
+ "start": 42.47,
40
+ "end": 45.91,
41
+ "text": "J'vais en gonfler dix à l'hélium pour accrocher\n"
42
+ },
43
+ {
44
+ "start": 47.12,
45
+ "end": 51.69,
46
+ "text": "La lettre que j'écris à l'instant, qui s'en ira au gré du vent\n"
47
+ },
48
+ {
49
+ "start": 51.69,
50
+ "end": 55.06,
51
+ "text": "Il ne te restera plus qu'à la rattraper\n\n"
52
+ },
53
+ {
54
+ "start": 92.82,
55
+ "end": 97.42,
56
+ "text": "Tu sais, t'aurais pas du crever, la vie n'était pas terminée\n"
57
+ },
58
+ {
59
+ "start": 97.42,
60
+ "end": 100.86,
61
+ "text": "Hier encore, y avait des vagues et puis du vent\n"
62
+ },
63
+ {
64
+ "start": 102.03,
65
+ "end": 106.58,
66
+ "text": "On aurait pu aller surfer, mais t'as préféré te casser\n"
67
+ },
68
+ {
69
+ "start": 106.58,
70
+ "end": 109.95,
71
+ "text": "Dans le jardin d'Éden, dans le jardin du temps\n\n"
72
+ },
73
+ {
74
+ "start": 111.16,
75
+ "end": 115.69,
76
+ "text": "Mais tu te dis que maintenant que les capotes sont à un franc\n"
77
+ },
78
+ {
79
+ "start": 115.69,
80
+ "end": 119.13,
81
+ "text": "Ton cœur battrait plus fort, quand arrive l'été\n"
82
+ },
83
+ {
84
+ "start": 120.27,
85
+ "end": 124.87,
86
+ "text": "Tu sentirais encore le vent, les grains de sable et puis le temps\n"
87
+ },
88
+ {
89
+ "start": 124.87,
90
+ "end": 128.1,
91
+ "text": "Couler entre tes doigts, et glisser sous tes pieds\n\n"
92
+ },
93
+ {
94
+ "start": 129.43,
95
+ "end": 134.0,
96
+ "text": "OK, je sais bien qu'elle était super bandante à en crever\n"
97
+ },
98
+ {
99
+ "start": 134.0,
100
+ "end": 137.46,
101
+ "text": "Elle t'a entraîné dans son lit, tu pouvais pas refuser\n"
102
+ },
103
+ {
104
+ "start": 138.57,
105
+ "end": 143.06,
106
+ "text": "Tu n'avais que deux francs sur toi, et t'as pensé, « 'tention, SIDA »\n"
107
+ },
108
+ {
109
+ "start": 143.16,
110
+ "end": 146.54,
111
+ "text": "Mais qu'une fille belle comme ça était immunisée\n\n"
112
+ },
113
+ {
114
+ "start": 165.94,
115
+ "end": 170.47,
116
+ "text": "Et tu te dis que maintenant que les capotes sont à un franc\n"
117
+ },
118
+ {
119
+ "start": 170.54,
120
+ "end": 174.27,
121
+ "text": "Tu serais encore là et tu raconterais\n"
122
+ },
123
+ {
124
+ "start": 175.14,
125
+ "end": 179.73,
126
+ "text": "Que t'avais fait l'amour deux fois sans penser qu'avec cette fille là\n"
127
+ },
128
+ {
129
+ "start": 179.73,
130
+ "end": 183.35,
131
+ "text": "L'amour et la mort étaient à jamais liés\n"
132
+ }
133
+ ]
134
+ }
alignment/Caralibro_-_Vagos_Permanentes.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 47.68,
5
+ "end": 51.5,
6
+ "text": "Etiqueto, agrego, me hago fan, cambio mi nick\n"
7
+ },
8
+ {
9
+ "start": 52.17,
10
+ "end": 57.0,
11
+ "text": "Lo publico en mi muro, lo comparto con un tweet\n"
12
+ },
13
+ {
14
+ "start": 58.65,
15
+ "end": 62.51,
16
+ "text": "Subo fotos moñas, actualizo mi perfil\n"
17
+ },
18
+ {
19
+ "start": 63.1,
20
+ "end": 66.71,
21
+ "text": "Recolecto y me suscribo a tu feed\n\n"
22
+ },
23
+ {
24
+ "start": 69.63,
25
+ "end": 74.78,
26
+ "text": "Tengo cuatro mil amigos, soy un tío súper popular\n"
27
+ },
28
+ {
29
+ "start": 75.12,
30
+ "end": 79.55,
31
+ "text": "A pesar de que a ninguno he visto jamás\n"
32
+ },
33
+ {
34
+ "start": 80.49,
35
+ "end": 85.82,
36
+ "text": "Si echo en falta compañía, va siendo hora de activar el chat\n"
37
+ },
38
+ {
39
+ "start": 86.07,
40
+ "end": 89.44,
41
+ "text": "Todo es falso, pero me da igual\n\n"
42
+ },
43
+ {
44
+ "start": 156.29,
45
+ "end": 158.8,
46
+ "text": "Sí, sí, es tu vida una patraña\n"
47
+ },
48
+ {
49
+ "start": 159.43,
50
+ "end": 162.14,
51
+ "text": "Sin hazañas, que te engaña, es una puta castaña\n"
52
+ },
53
+ {
54
+ "start": 162.14,
55
+ "end": 164.93,
56
+ "text": "Existencia ermitaña que te nubla y te empaña\n"
57
+ },
58
+ {
59
+ "start": 164.93,
60
+ "end": 167.53,
61
+ "text": "Todo juicio y razón, te lo digo sin rencor\n"
62
+ },
63
+ {
64
+ "start": 167.67,
65
+ "end": 170.41,
66
+ "text": "Pero te falta un hervor y poco a poco estás cayendo\n"
67
+ },
68
+ {
69
+ "start": 170.41,
70
+ "end": 173.86,
71
+ "text": "En el hoyo de la enajenación, por favor\n"
72
+ },
73
+ {
74
+ "start": 174.84,
75
+ "end": 177.27,
76
+ "text": "Sal de tu letargo y hazte cargo de que el mundo\n"
77
+ },
78
+ {
79
+ "start": 177.27,
80
+ "end": 179.23,
81
+ "text": "No se encierra tras tu pobre monitor\n\n"
82
+ },
83
+ {
84
+ "start": 182.09,
85
+ "end": 185.96,
86
+ "text": "Hoy salí a la calle, todo es nuevo para mí\n"
87
+ },
88
+ {
89
+ "start": 186.51,
90
+ "end": 191.38,
91
+ "text": "Llevaba más de tres años metido en mi cuchitril\n"
92
+ },
93
+ {
94
+ "start": 193.07,
95
+ "end": 196.93,
96
+ "text": "Me he sentido solo, sin saber a dónde ir\n"
97
+ },
98
+ {
99
+ "start": 197.47,
100
+ "end": 201.12,
101
+ "text": "Ahora entiendo por qué dicen que soy un freak\n\n"
102
+ },
103
+ {
104
+ "start": 204.01,
105
+ "end": 209.26,
106
+ "text": "Tengo cuatro mil amigos, soy un tío súper popular\n"
107
+ },
108
+ {
109
+ "start": 209.49,
110
+ "end": 213.98,
111
+ "text": "A pesar de que a ninguno he visto jamás\n"
112
+ },
113
+ {
114
+ "start": 214.88,
115
+ "end": 220.24,
116
+ "text": "Si echo en falta compañía, va siendo hora de activar el chat\n"
117
+ },
118
+ {
119
+ "start": 220.48,
120
+ "end": 224.06,
121
+ "text": "Todo es falso, pero me da igual\n"
122
+ }
123
+ ]
124
+ }
alignment/Color_Out_-_Falling_Star.json ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 13.7,
5
+ "end": 17.76,
6
+ "text": "Someday you'll come back here\n"
7
+ },
8
+ {
9
+ "start": 19.59,
10
+ "end": 22.78,
11
+ "text": "And you'll open up your arms\n"
12
+ },
13
+ {
14
+ "start": 25.61,
15
+ "end": 31.18,
16
+ "text": "And you'll laugh and say I knew it wouldn't take you long\n"
17
+ },
18
+ {
19
+ "start": 31.93,
20
+ "end": 34.45,
21
+ "text": "To realize I was gone\n"
22
+ },
23
+ {
24
+ "start": 37.62,
25
+ "end": 42.24,
26
+ "text": "And it's only been three years (it's only been three years)\n"
27
+ },
28
+ {
29
+ "start": 43.68,
30
+ "end": 47.92,
31
+ "text": "But for me it's been so long (so long, so long)\n"
32
+ },
33
+ {
34
+ "start": 49.55,
35
+ "end": 53.26,
36
+ "text": "And I remember it like yesterday\n"
37
+ },
38
+ {
39
+ "start": 53.52,
40
+ "end": 55.19,
41
+ "text": "Oh, you could say\n"
42
+ },
43
+ {
44
+ "start": 55.62,
45
+ "end": 60.08,
46
+ "text": "I've been holding on (holding on)\n\n"
47
+ },
48
+ {
49
+ "start": 60.37,
50
+ "end": 64.54,
51
+ "text": "And I waited all of my life\n"
52
+ },
53
+ {
54
+ "start": 64.84,
55
+ "end": 67.36,
56
+ "text": "For you to make it right\n"
57
+ },
58
+ {
59
+ "start": 67.52,
60
+ "end": 71.19,
61
+ "text": "But the time has come and gone\n"
62
+ },
63
+ {
64
+ "start": 72.1,
65
+ "end": 76.5,
66
+ "text": "And it's faded and lost all it's light\n"
67
+ },
68
+ {
69
+ "start": 76.79,
70
+ "end": 79.68,
71
+ "text": "A star that shined so bright\n"
72
+ },
73
+ {
74
+ "start": 79.94,
75
+ "end": 82.58,
76
+ "text": "Falls from the sky\n\n"
77
+ },
78
+ {
79
+ "start": 84.14,
80
+ "end": 87.92,
81
+ "text": "Don't make a wish that won't come true\n"
82
+ },
83
+ {
84
+ "start": 88.57,
85
+ "end": 91.3,
86
+ "text": "And I learned that from you\n"
87
+ },
88
+ {
89
+ "start": 91.61,
90
+ "end": 95.86,
91
+ "text": "Such a long time ago (long time ago)\n"
92
+ },
93
+ {
94
+ "start": 95.99,
95
+ "end": 100.23,
96
+ "text": "When you left you said you had to find\n"
97
+ },
98
+ {
99
+ "start": 100.72,
100
+ "end": 103.43,
101
+ "text": "A better way of life\n"
102
+ },
103
+ {
104
+ "start": 103.64,
105
+ "end": 107.8,
106
+ "text": "This one just wouldn't do (just wouldn't do)\n\n"
107
+ },
108
+ {
109
+ "start": 108.06,
110
+ "end": 112.46,
111
+ "text": "And I waited all of my life\n"
112
+ },
113
+ {
114
+ "start": 112.81,
115
+ "end": 115.24,
116
+ "text": "For you to take your time\n"
117
+ },
118
+ {
119
+ "start": 115.61,
120
+ "end": 119.44,
121
+ "text": "To find your place\n"
122
+ },
123
+ {
124
+ "start": 120.06,
125
+ "end": 123.23,
126
+ "text": "But I learned that this world still turns without you\n"
127
+ },
128
+ {
129
+ "start": 123.33,
130
+ "end": 126.37,
131
+ "text": "And you were just a phase and I learned without you\n"
132
+ },
133
+ {
134
+ "start": 126.52,
135
+ "end": 130.33,
136
+ "text": "Here I was happier alone\n"
137
+ },
138
+ {
139
+ "start": 130.63,
140
+ "end": 133.78,
141
+ "text": "Then I ever would've known\n\n"
142
+ },
143
+ {
144
+ "start": 156.07,
145
+ "end": 160.97,
146
+ "text": "And so I waited (I waited)\n"
147
+ },
148
+ {
149
+ "start": 162.18,
150
+ "end": 168.17,
151
+ "text": "And so I waited (and I waited and I waited)\n\n"
152
+ },
153
+ {
154
+ "start": 168.17,
155
+ "end": 173.94,
156
+ "text": "And so I waited all of my life (all of my life)\n"
157
+ },
158
+ {
159
+ "start": 172.79,
160
+ "end": 176.86,
161
+ "text": "For you to take your time (for you to take your time)\n"
162
+ },
163
+ {
164
+ "start": 175.45,
165
+ "end": 183.39,
166
+ "text": "But the time has come and gone (and the time has come and gone)\n"
167
+ },
168
+ {
169
+ "start": 180.06,
170
+ "end": 184.42,
171
+ "text": "And it's faded and lost all its light\n"
172
+ },
173
+ {
174
+ "start": 184.85,
175
+ "end": 187.74,
176
+ "text": "A star that shined so bright\n"
177
+ },
178
+ {
179
+ "start": 188.03,
180
+ "end": 190.41,
181
+ "text": "Falls from the sky\n"
182
+ },
183
+ {
184
+ "start": 190.7,
185
+ "end": 194.92,
186
+ "text": "On this cold December night\n"
187
+ }
188
+ ]
189
+ }
alignment/Confession_-_Quesabe.json ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 3.22,
5
+ "end": 3.99,
6
+ "text": "Here we go\n\n"
7
+ },
8
+ {
9
+ "start": 16.0,
10
+ "end": 17.8,
11
+ "text": "Ah-ah-ah\n"
12
+ },
13
+ {
14
+ "start": 20.18,
15
+ "end": 22.51,
16
+ "text": "Eh-ah\n"
17
+ },
18
+ {
19
+ "start": 23.81,
20
+ "end": 27.06,
21
+ "text": "Eh-ah\n"
22
+ },
23
+ {
24
+ "start": 27.55,
25
+ "end": 28.98,
26
+ "text": "Yeah (yeah)\n\n"
27
+ },
28
+ {
29
+ "start": 29.17,
30
+ "end": 31.19,
31
+ "text": "Si t'es là c'est pour l'meilleur et pour le pire\n"
32
+ },
33
+ {
34
+ "start": 31.5,
35
+ "end": 33.49,
36
+ "text": "J'te retiendrais pas si tu veux partir un jour\n"
37
+ },
38
+ {
39
+ "start": 33.82,
40
+ "end": 35.56,
41
+ "text": "Un coup c'est la guerre, un coup c'est la fête\n"
42
+ },
43
+ {
44
+ "start": 35.65,
45
+ "end": 37.06,
46
+ "text": "J'sais plus trop où donner d'la tête\n"
47
+ },
48
+ {
49
+ "start": 37.36,
50
+ "end": 39.38,
51
+ "text": "J'en ai fait des bêtises, je sors sans prévenir\n"
52
+ },
53
+ {
54
+ "start": 39.38,
55
+ "end": 40.7,
56
+ "text": "Tu finis par être à bout\n"
57
+ },
58
+ {
59
+ "start": 41.2,
60
+ "end": 42.95,
61
+ "text": "Un coup c'est la guerre, un coup c'est la fête\n\n"
62
+ },
63
+ {
64
+ "start": 44.99,
65
+ "end": 50.66,
66
+ "text": "Ih, eh, entre nous beaucoup trop d'questions\n"
67
+ },
68
+ {
69
+ "start": 48.24,
70
+ "end": 52.02,
71
+ "text": "(Entre nous beaucoup trop d'questions, questions)\n"
72
+ },
73
+ {
74
+ "start": 51.52,
75
+ "end": 57.28,
76
+ "text": "Eh, eh, j'te l'dirais jamais mais t'avais raison\n"
77
+ },
78
+ {
79
+ "start": 55.71,
80
+ "end": 57.96,
81
+ "text": "(L'dirais jamais mais t'avais raison)\n\n"
82
+ },
83
+ {
84
+ "start": 59.38,
85
+ "end": 62.11,
86
+ "text": "Non, j'voulais pas te mentir mais\n"
87
+ },
88
+ {
89
+ "start": 62.11,
90
+ "end": 64.91,
91
+ "text": "J'ai dû choisir entre facilité et courage ('rage)\n"
92
+ },
93
+ {
94
+ "start": 66.76,
95
+ "end": 69.51,
96
+ "text": "À trop vouloir m'en sortir j'ai\n"
97
+ },
98
+ {
99
+ "start": 69.51,
100
+ "end": 72.28,
101
+ "text": "Seulement retardé la tempête avant l'orage ('rage)\n\n"
102
+ },
103
+ {
104
+ "start": 73.46,
105
+ "end": 74.6,
106
+ "text": "Et j'te connais très bien\n"
107
+ },
108
+ {
109
+ "start": 74.88,
110
+ "end": 76.87,
111
+ "text": "Je sais quand t'es blessée, je sais quand t'es déçue\n"
112
+ },
113
+ {
114
+ "start": 77.17,
115
+ "end": 79.19,
116
+ "text": "Je sais que tu kiffes quand j'te regarde\n"
117
+ },
118
+ {
119
+ "start": 79.19,
120
+ "end": 80.68,
121
+ "text": "Droit dans les yeux quand j'suis au-dessus\n\n"
122
+ },
123
+ {
124
+ "start": 80.95,
125
+ "end": 82.53,
126
+ "text": "J'voulais pas, mais tu sais comment j'suis\n"
127
+ },
128
+ {
129
+ "start": 82.88,
130
+ "end": 84.28,
131
+ "text": "Voleur d'amour, j'tavais prévenu\n"
132
+ },
133
+ {
134
+ "start": 84.55,
135
+ "end": 86.4,
136
+ "text": "J'ai volé ton cœur et celui d'ta pote\n"
137
+ },
138
+ {
139
+ "start": 86.4,
140
+ "end": 87.97,
141
+ "text": "Mais celui-là, c'était pas voulu\n\n"
142
+ },
143
+ {
144
+ "start": 88.24,
145
+ "end": 89.93,
146
+ "text": "Et j'sais plus quoi faire maintenant\n"
147
+ },
148
+ {
149
+ "start": 90.28,
150
+ "end": 91.92,
151
+ "text": "Que t'es partie j'pense à avant\n"
152
+ },
153
+ {
154
+ "start": 92.15,
155
+ "end": 93.62,
156
+ "text": "J'attends seulement que tu reviennes\n"
157
+ },
158
+ {
159
+ "start": 93.85,
160
+ "end": 95.43,
161
+ "text": "Car t'es accro à moi comme cocaïne\n\n"
162
+ },
163
+ {
164
+ "start": 95.7,
165
+ "end": 97.67,
166
+ "text": "Et j'sais plus quoi faire maintenant\n"
167
+ },
168
+ {
169
+ "start": 97.67,
170
+ "end": 99.54,
171
+ "text": "Que t'es partie j'pense à avant\n"
172
+ },
173
+ {
174
+ "start": 99.54,
175
+ "end": 100.95,
176
+ "text": "J'attends seulement que tu reviennes\n"
177
+ },
178
+ {
179
+ "start": 101.23,
180
+ "end": 102.98,
181
+ "text": "Car t'es accro à moi comme cocaïne\n\n"
182
+ },
183
+ {
184
+ "start": 103.09,
185
+ "end": 105.04,
186
+ "text": "Si t'es là c'est pour le meilleur et pour le pire\n"
187
+ },
188
+ {
189
+ "start": 105.34,
190
+ "end": 107.35,
191
+ "text": "J'te retiendrais pas si tu veux partir un jour\n"
192
+ },
193
+ {
194
+ "start": 107.7,
195
+ "end": 109.43,
196
+ "text": "Un coup c'est la guerre, un coup c'est la fête\n"
197
+ },
198
+ {
199
+ "start": 109.49,
200
+ "end": 110.9,
201
+ "text": "J'sais plus trop où donner d'la tête\n"
202
+ },
203
+ {
204
+ "start": 111.21,
205
+ "end": 113.23,
206
+ "text": "J'en ai fait des bêtises, je sors sans prévenir\n"
207
+ },
208
+ {
209
+ "start": 113.23,
210
+ "end": 115.16,
211
+ "text": "Tu finis par être à bout (à bout)\n"
212
+ },
213
+ {
214
+ "start": 115.03,
215
+ "end": 116.83,
216
+ "text": "Un coup c'est la guerre, un coup c'est la fête\n"
217
+ },
218
+ {
219
+ "start": 116.91,
220
+ "end": 118.38,
221
+ "text": "J'sais plus trop où donner d'la tête\n\n"
222
+ },
223
+ {
224
+ "start": 118.89,
225
+ "end": 124.98,
226
+ "text": "Ih, eh, entre nous beaucoup trop d'questions (questions, questi')\n"
227
+ },
228
+ {
229
+ "start": 123.97,
230
+ "end": 125.86,
231
+ "text": "(Entre nous beaucoup trop d'questi')\n"
232
+ },
233
+ {
234
+ "start": 125.69,
235
+ "end": 131.39,
236
+ "text": "Eh, eh, eh, j'te l'dirais jamais mais t'avais raison (jamais, jamais)\n"
237
+ },
238
+ {
239
+ "start": 131.14,
240
+ "end": 134.54,
241
+ "text": "(J'te l'dirais jamais mais t'avais raison)\n"
242
+ },
243
+ {
244
+ "start": 134.6,
245
+ "end": 136.99,
246
+ "text": "(Jamais, jamais, jamais)\n"
247
+ }
248
+ ]
249
+ }
alignment/Cortez_-_Feel__Stripped_.json ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 19.68,
5
+ "end": 23.56,
6
+ "text": "Yeah, oh\n\n"
7
+ },
8
+ {
9
+ "start": 25.7,
10
+ "end": 28.88,
11
+ "text": "Please don't stand over here\n"
12
+ },
13
+ {
14
+ "start": 28.88,
15
+ "end": 31.92,
16
+ "text": "Act like you care, so self-aware\n"
17
+ },
18
+ {
19
+ "start": 32.17,
20
+ "end": 35.15,
21
+ "text": "I know you were not scared\n"
22
+ },
23
+ {
24
+ "start": 35.26,
25
+ "end": 39.17,
26
+ "text": "I could've died, but that isn't fair, huh?\n"
27
+ },
28
+ {
29
+ "start": 39.88,
30
+ "end": 42.31,
31
+ "text": "But what am I supposed to think?\n"
32
+ },
33
+ {
34
+ "start": 42.8,
35
+ "end": 44.98,
36
+ "text": "You weren't there for me\n"
37
+ },
38
+ {
39
+ "start": 46.29,
40
+ "end": 50.0,
41
+ "text": "'Cause I'm not who I should be for you\n\n"
42
+ },
43
+ {
44
+ "start": 50.74,
45
+ "end": 53.89,
46
+ "text": "You've got a record and a past\n"
47
+ },
48
+ {
49
+ "start": 54.15,
50
+ "end": 56.78,
51
+ "text": "Guess that's what makes me the ass\n"
52
+ },
53
+ {
54
+ "start": 57.22,
55
+ "end": 60.19,
56
+ "text": "I should've known, I should've cared\n"
57
+ },
58
+ {
59
+ "start": 60.49,
60
+ "end": 62.91,
61
+ "text": "How could I have been so unprepared?\n"
62
+ },
63
+ {
64
+ "start": 62.98,
65
+ "end": 69.82,
66
+ "text": "Now where does the good boy go to hide away, hide the pain?\n"
67
+ },
68
+ {
69
+ "start": 70.26,
70
+ "end": 74.76,
71
+ "text": "'Cause you won't see me cry when I'm done\n\n"
72
+ },
73
+ {
74
+ "start": 76.82,
75
+ "end": 82.64,
76
+ "text": "What is it that you want from me, want from me?\n"
77
+ },
78
+ {
79
+ "start": 83.31,
80
+ "end": 88.96,
81
+ "text": "What is it that you want from me, want from me?\n"
82
+ },
83
+ {
84
+ "start": 88.96,
85
+ "end": 93.88,
86
+ "text": "I want you to feel, I want you to feel\n"
87
+ },
88
+ {
89
+ "start": 95.3,
90
+ "end": 100.26,
91
+ "text": "I want you to feel, I want you to feel\n\n"
92
+ },
93
+ {
94
+ "start": 105.41,
95
+ "end": 107.39,
96
+ "text": "I'm a feather in the wind\n"
97
+ },
98
+ {
99
+ "start": 108.79,
100
+ "end": 112.05,
101
+ "text": "I'm carried away by all that you say\n"
102
+ },
103
+ {
104
+ "start": 112.05,
105
+ "end": 115.76,
106
+ "text": "Sitting on thin air\n"
107
+ },
108
+ {
109
+ "start": 118.13,
110
+ "end": 121.14,
111
+ "text": "I'm a loss to my friends\n"
112
+ },
113
+ {
114
+ "start": 121.69,
115
+ "end": 124.76,
116
+ "text": "Too unpersuaded by all they're saying\n"
117
+ },
118
+ {
119
+ "start": 124.76,
120
+ "end": 130.56,
121
+ "text": "And you can't pretend to care, yeah\n\n"
122
+ },
123
+ {
124
+ "start": 130.56,
125
+ "end": 133.79,
126
+ "text": "Yeah, I was reckless in the past\n"
127
+ },
128
+ {
129
+ "start": 134.17,
130
+ "end": 136.69,
131
+ "text": "I was see-through just like glass\n"
132
+ },
133
+ {
134
+ "start": 137.15,
135
+ "end": 140.16,
136
+ "text": "Did all I could to make this last\n"
137
+ },
138
+ {
139
+ "start": 140.31,
140
+ "end": 142.87,
141
+ "text": "So how could you be such an ass?\n"
142
+ },
143
+ {
144
+ "start": 143.05,
145
+ "end": 149.52,
146
+ "text": "I know where the good boys go to hide the pain, hide the pain\n"
147
+ },
148
+ {
149
+ "start": 149.52,
150
+ "end": 156.04,
151
+ "text": "But that don't mean I die when you don't\n\n"
152
+ },
153
+ {
154
+ "start": 156.93,
155
+ "end": 162.68,
156
+ "text": "What is it that you want from me, want from me?\n"
157
+ },
158
+ {
159
+ "start": 163.28,
160
+ "end": 168.7,
161
+ "text": "What is it that you want from me, want from me?\n"
162
+ },
163
+ {
164
+ "start": 169.07,
165
+ "end": 173.84,
166
+ "text": "I want you to feel, I want you to feel\n"
167
+ },
168
+ {
169
+ "start": 175.24,
170
+ "end": 180.4,
171
+ "text": "I want you to feel, I want you to feel\n\n"
172
+ },
173
+ {
174
+ "start": 182.54,
175
+ "end": 188.25,
176
+ "text": "What is it that you want from me, want from me?\n"
177
+ },
178
+ {
179
+ "start": 188.82,
180
+ "end": 194.48,
181
+ "text": "What is it that you want from me, want from me?\n"
182
+ },
183
+ {
184
+ "start": 194.48,
185
+ "end": 199.9,
186
+ "text": "I want you to feel, I want you to feel\n"
187
+ },
188
+ {
189
+ "start": 200.88,
190
+ "end": 207.4,
191
+ "text": "I want you to feel, I want you to feel\n\n"
192
+ },
193
+ {
194
+ "start": 208.23,
195
+ "end": 213.56,
196
+ "text": "Good boys go to hide the pain, hide the pain\n"
197
+ },
198
+ {
199
+ "start": 213.56,
200
+ "end": 218.21,
201
+ "text": "'Cause you won't see me cry when I'm done\n"
202
+ },
203
+ {
204
+ "start": 219.79,
205
+ "end": 226.37,
206
+ "text": "I know where the good boys go to hide the pain, hide the pain\n"
207
+ },
208
+ {
209
+ "start": 226.37,
210
+ "end": 231.48,
211
+ "text": "But that don't mean I die when you don't\n"
212
+ }
213
+ ]
214
+ }
alignment/Culture_&_Co._-_cool.cavemen.json ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 0.01,
5
+ "end": 1.54,
6
+ "text": "Um, dois, três, quatro\n\n"
7
+ },
8
+ {
9
+ "start": 67.42,
10
+ "end": 70.62,
11
+ "text": "Imagine-toi qu'un beau jour\n"
12
+ },
13
+ {
14
+ "start": 70.77,
15
+ "end": 73.89,
16
+ "text": "Tu devras payer pour respirer\n"
17
+ },
18
+ {
19
+ "start": 74.26,
20
+ "end": 77.47,
21
+ "text": "Cours vite pour te faire assurer\n"
22
+ },
23
+ {
24
+ "start": 77.6,
25
+ "end": 80.7,
26
+ "text": "Si tu veux pas trop en baver\n"
27
+ },
28
+ {
29
+ "start": 81.13,
30
+ "end": 84.37,
31
+ "text": "En plus de te faire marcher dessus\n"
32
+ },
33
+ {
34
+ "start": 84.47,
35
+ "end": 87.34,
36
+ "text": "Le but est de te taxer\n\n"
37
+ },
38
+ {
39
+ "start": 88.02,
40
+ "end": 91.11,
41
+ "text": "Si tu veux jouer un rôle\n"
42
+ },
43
+ {
44
+ "start": 91.41,
45
+ "end": 94.58,
46
+ "text": "Attends encore, oh\n"
47
+ },
48
+ {
49
+ "start": 94.89,
50
+ "end": 97.89,
51
+ "text": "Culture and Co. dans ton bol\n"
52
+ },
53
+ {
54
+ "start": 98.31,
55
+ "end": 101.51,
56
+ "text": "Pas de remords, oh\n\n"
57
+ },
58
+ {
59
+ "start": 108.44,
60
+ "end": 111.74,
61
+ "text": "Bientôt toute l'inspiration\n"
62
+ },
63
+ {
64
+ "start": 111.9,
65
+ "end": 115.2,
66
+ "text": "Se fera devant la télévision\n"
67
+ },
68
+ {
69
+ "start": 115.39,
70
+ "end": 118.74,
71
+ "text": "Où seront les bonnes émissions\n"
72
+ },
73
+ {
74
+ "start": 118.84,
75
+ "end": 121.95,
76
+ "text": "Comme un suppo à t'foutre dans le fion\n"
77
+ },
78
+ {
79
+ "start": 122.22,
80
+ "end": 125.45,
81
+ "text": "En plus de te faire marcher dessus\n"
82
+ },
83
+ {
84
+ "start": 125.63,
85
+ "end": 128.63,
86
+ "text": "Le but est de te saigner\n\n"
87
+ },
88
+ {
89
+ "start": 129.12,
90
+ "end": 132.35,
91
+ "text": "Si tu veux jouer un rôle\n"
92
+ },
93
+ {
94
+ "start": 132.58,
95
+ "end": 135.66,
96
+ "text": "Attends encore, oh\n"
97
+ },
98
+ {
99
+ "start": 136.03,
100
+ "end": 139.19,
101
+ "text": "Culture and Co. dans ton bol\n"
102
+ },
103
+ {
104
+ "start": 139.41,
105
+ "end": 142.73,
106
+ "text": "Pas de remords, oh\n\n"
107
+ },
108
+ {
109
+ "start": 143.03,
110
+ "end": 153.37,
111
+ "text": "(Eh-eh-eh, eh-eh-eh-eh, eh-eh-eh)\n"
112
+ },
113
+ {
114
+ "start": 155.9,
115
+ "end": 165.94,
116
+ "text": "(Eh-eh-eh, eh-eh-eh-eh, eh-eh-eh)\n\n"
117
+ },
118
+ {
119
+ "start": 177.12,
120
+ "end": 180.33,
121
+ "text": "Si tu veux jouer un rôle\n"
122
+ },
123
+ {
124
+ "start": 180.56,
125
+ "end": 183.67,
126
+ "text": "Attends encore, oh\n"
127
+ },
128
+ {
129
+ "start": 183.97,
130
+ "end": 187.05,
131
+ "text": "Culture and Co. dans ton bol\n"
132
+ },
133
+ {
134
+ "start": 187.43,
135
+ "end": 190.62,
136
+ "text": "Pas de remords, oh\n"
137
+ }
138
+ ]
139
+ }
alignment/DON_VALDES_-_Tu_sais_Man.json ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 2.44,
5
+ "end": 5.36,
6
+ "text": "Plus de love\n"
7
+ },
8
+ {
9
+ "start": 5.54,
10
+ "end": 8.09,
11
+ "text": "Plus de love\n"
12
+ },
13
+ {
14
+ "start": 8.73,
15
+ "end": 12.39,
16
+ "text": "Plus de love, hey\n\n"
17
+ },
18
+ {
19
+ "start": 12.45,
20
+ "end": 16.22,
21
+ "text": "Je rêve qu'un jour chacun soit maître de son destin (I have a dream)\n"
22
+ },
23
+ {
24
+ "start": 15.72,
25
+ "end": 18.94,
26
+ "text": "Que chaque personne puisse un jour se prendre en main (yeah)\n"
27
+ },
28
+ {
29
+ "start": 18.86,
30
+ "end": 21.98,
31
+ "text": "Sans avoir à douter de prendre le mauvais chemin (ouh)\n"
32
+ },
33
+ {
34
+ "start": 22.05,
35
+ "end": 24.87,
36
+ "text": "Où chaque obstacle ne serait surmonté en vain\n"
37
+ },
38
+ {
39
+ "start": 25.22,
40
+ "end": 28.96,
41
+ "text": "Que les parents pardonnent leurs enfants de n'plus croire en rien (yute, man)\n"
42
+ },
43
+ {
44
+ "start": 28.41,
45
+ "end": 31.58,
46
+ "text": "Que les enfants suivent cette mélodie qui vient de loin (ouh)\n"
47
+ },
48
+ {
49
+ "start": 31.62,
50
+ "end": 34.79,
51
+ "text": "Au lieu d'écouter des chimères qui ne valent rien (ouais)\n"
52
+ },
53
+ {
54
+ "start": 34.74,
55
+ "end": 37.46,
56
+ "text": "« Tu es mon adversaire », me diront certains\n\n"
57
+ },
58
+ {
59
+ "start": 37.57,
60
+ "end": 40.95,
61
+ "text": "Oh oui, tu sais, man (tu sais, man)\n"
62
+ },
63
+ {
64
+ "start": 39.59,
65
+ "end": 43.75,
66
+ "text": "La joie quand on prend conscience d'exister (oh yeah)\n"
67
+ },
68
+ {
69
+ "start": 43.97,
70
+ "end": 45.7,
71
+ "text": "Oh oui, tu sais, man\n"
72
+ },
73
+ {
74
+ "start": 45.92,
75
+ "end": 51.63,
76
+ "text": "Les regrets sont si durs à oublier (oh, no, no, no, no, no)\n"
77
+ },
78
+ {
79
+ "start": 50.3,
80
+ "end": 52.82,
81
+ "text": "Oh oui, tu sais, man (hey)\n"
82
+ },
83
+ {
84
+ "start": 52.29,
85
+ "end": 57.22,
86
+ "text": "Que les enfants veulent grandir et te ressembler (ouh, tous les yutes, eh)\n"
87
+ },
88
+ {
89
+ "start": 56.67,
90
+ "end": 59.54,
91
+ "text": "Oh oui, tu sais, man (oh yeah)\n"
92
+ },
93
+ {
94
+ "start": 58.63,
95
+ "end": 62.79,
96
+ "text": "Un jour ou l'autre, l'amour va triompher (love, love, love now)\n\n"
97
+ },
98
+ {
99
+ "start": 63.17,
100
+ "end": 66.01,
101
+ "text": "(Jah!) J'en vois beaucoup qui rigolent quand je clame ton nom\n"
102
+ },
103
+ {
104
+ "start": 66.53,
105
+ "end": 69.47,
106
+ "text": "Ils te prennent pour une marque, une herbe, une religion\n"
107
+ },
108
+ {
109
+ "start": 69.77,
110
+ "end": 73.1,
111
+ "text": "Beaucoup parlent sur toi sans même faire attention (beaucoup)\n"
112
+ },
113
+ {
114
+ "start": 72.9,
115
+ "end": 76.42,
116
+ "text": "Les signes, ils préfèrent les voir à la télévision (yeah)\n"
117
+ },
118
+ {
119
+ "start": 76.14,
120
+ "end": 79.8,
121
+ "text": "Beaucoup pensent parler avec esprit, mais leur cœur est fermé (parce que)\n"
122
+ },
123
+ {
124
+ "start": 79.26,
125
+ "end": 82.18,
126
+ "text": "Jamais ils n'osent se taire pour mieux écouter\n"
127
+ },
128
+ {
129
+ "start": 82.45,
130
+ "end": 85.75,
131
+ "text": "Ils osent narguer l'enfer en bravant tous les dangers (hey)\n"
132
+ },
133
+ {
134
+ "start": 85.67,
135
+ "end": 88.66,
136
+ "text": "Dure sera la chute quand il faudra s'réveiller\n\n"
137
+ },
138
+ {
139
+ "start": 88.44,
140
+ "end": 91.74,
141
+ "text": "Oh oui, tu sais, man (tu sais, man)\n"
142
+ },
143
+ {
144
+ "start": 90.43,
145
+ "end": 94.63,
146
+ "text": "La joie quand on prend conscience d'exister (oh yeah)\n"
147
+ },
148
+ {
149
+ "start": 94.82,
150
+ "end": 96.62,
151
+ "text": "Oh oui, tu sais, man\n"
152
+ },
153
+ {
154
+ "start": 96.79,
155
+ "end": 102.14,
156
+ "text": "Les regrets sont si durs à oublier (oh, no, no, no, no, no)\n"
157
+ },
158
+ {
159
+ "start": 101.16,
160
+ "end": 103.68,
161
+ "text": "Oh oui, tu sais, man (hey)\n"
162
+ },
163
+ {
164
+ "start": 103.15,
165
+ "end": 108.16,
166
+ "text": "Que les enfants veulent grandir et te ressembler (ouh, tous les yutes, eh)\n"
167
+ },
168
+ {
169
+ "start": 107.58,
170
+ "end": 110.42,
171
+ "text": "Oh oui, tu sais, man (oh yeah)\n"
172
+ },
173
+ {
174
+ "start": 109.49,
175
+ "end": 114.38,
176
+ "text": "Un jour ou l'autre, l'amour va triompher (hey, l'amour pour tous les frères et sœurs)\n\n"
177
+ },
178
+ {
179
+ "start": 114.38,
180
+ "end": 117.53,
181
+ "text": "Je rêve qu'un jour chacun soit maître de son destin (ouh)\n"
182
+ },
183
+ {
184
+ "start": 117.46,
185
+ "end": 120.76,
186
+ "text": "Que chaque personne puisse un jour se prendre en main (tout le monde)\n"
187
+ },
188
+ {
189
+ "start": 120.61,
190
+ "end": 123.82,
191
+ "text": "Sans avoir à douter de prendre le mauvais chemin (hey)\n"
192
+ },
193
+ {
194
+ "start": 123.82,
195
+ "end": 127.02,
196
+ "text": "Que chaque obstacle ne serait surmonté en vain (ah, music !)\n\n"
197
+ },
198
+ {
199
+ "start": 127.02,
200
+ "end": 130.07,
201
+ "text": "Wo-yo (pour tous les frères et sœurs motivés)\n"
202
+ },
203
+ {
204
+ "start": 130.12,
205
+ "end": 133.34,
206
+ "text": "Wo-yo-yo-yo-yo (oh, viens, bouge à la musique reggae)\n"
207
+ },
208
+ {
209
+ "start": 133.34,
210
+ "end": 137.0,
211
+ "text": "Wo-yo (oh oui, man, si t'es motivé, motivé)\n"
212
+ },
213
+ {
214
+ "start": 136.51,
215
+ "end": 139.68,
216
+ "text": "Wo-yo-yo-yo-yo (oh, viens, parle ici d'unité)\n"
217
+ },
218
+ {
219
+ "start": 139.68,
220
+ "end": 143.47,
221
+ "text": "Wo-yo-yo (pour tous les sœurs et frères de tous les quartiers)\n"
222
+ },
223
+ {
224
+ "start": 142.89,
225
+ "end": 146.08,
226
+ "text": "Wo-yo-yo-yo-yo (ouah, viens ici dans l'ambiance policière)\n"
227
+ },
228
+ {
229
+ "start": 146.08,
230
+ "end": 149.03,
231
+ "text": "Wo-yo-yo (danse sur la musique reggae)\n"
232
+ },
233
+ {
234
+ "start": 149.22,
235
+ "end": 151.43,
236
+ "text": "Wo-yo-yo-yo-yo (yo, big up !)\n\n"
237
+ },
238
+ {
239
+ "start": 152.01,
240
+ "end": 155.4,
241
+ "text": "Oh oui, tu sais, man (tu sais, man)\n"
242
+ },
243
+ {
244
+ "start": 154.02,
245
+ "end": 158.08,
246
+ "text": "La joie quand on prend conscience d'exister (oh yeah)\n"
247
+ },
248
+ {
249
+ "start": 158.38,
250
+ "end": 160.2,
251
+ "text": "Oh oui, tu sais, man\n"
252
+ },
253
+ {
254
+ "start": 160.34,
255
+ "end": 165.78,
256
+ "text": "Les regrets sont si durs à oublier (oh, no, no, no, no, no)\n"
257
+ },
258
+ {
259
+ "start": 164.75,
260
+ "end": 167.23,
261
+ "text": "Oh oui, tu sais, man (hey)\n"
262
+ },
263
+ {
264
+ "start": 166.71,
265
+ "end": 171.65,
266
+ "text": "Que les enfants veulent grandir et te ressembler (ouh, tous les yutes, eh)\n"
267
+ },
268
+ {
269
+ "start": 171.13,
270
+ "end": 173.95,
271
+ "text": "Oh oui, tu sais, man (oh yeah)\n"
272
+ },
273
+ {
274
+ "start": 173.05,
275
+ "end": 177.26,
276
+ "text": "Un jour ou l'autre, l'amour va triompher (love, love, love now)\n\n"
277
+ },
278
+ {
279
+ "start": 179.62,
280
+ "end": 184.73,
281
+ "text": "On revient chanter pour Jah\n"
282
+ },
283
+ {
284
+ "start": 185.76,
285
+ "end": 190.8,
286
+ "text": "Pour tous ceux qui gardent la foi\n"
287
+ },
288
+ {
289
+ "start": 192.14,
290
+ "end": 197.37,
291
+ "text": "Pour tous ceux qui restent au combat, yeah\n"
292
+ },
293
+ {
294
+ "start": 198.5,
295
+ "end": 202.69,
296
+ "text": "Pour tous ceux qui chantent pour la joie\n"
297
+ },
298
+ {
299
+ "start": 202.86,
300
+ "end": 204.61,
301
+ "text": "(Jah ! Boh !) Conscious !\n"
302
+ }
303
+ ]
304
+ }
alignment/Da_wurdest_du_geboren_-_Alice_Tlustos_.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 7.72,
5
+ "end": 16.65,
6
+ "text": "Hoffnungslos im Dunkel meines Seins raste ich dahin\n"
7
+ },
8
+ {
9
+ "start": 17.29,
10
+ "end": 23.18,
11
+ "text": "Suchte nach dem Sinn meines Lebens\n"
12
+ },
13
+ {
14
+ "start": 25.58,
15
+ "end": 32.46,
16
+ "text": "Voller Angst war ich gefangen, suchte nach dem Ziel\n"
17
+ },
18
+ {
19
+ "start": 33.31,
20
+ "end": 38.72,
21
+ "text": "Hasste dieses Spiel meines Lebens\n"
22
+ },
23
+ {
24
+ "start": 41.08,
25
+ "end": 48.25,
26
+ "text": "Wahrheit war mir fremd, zu schwer, Anerkennung galt\n"
27
+ },
28
+ {
29
+ "start": 48.87,
30
+ "end": 54.13,
31
+ "text": "Denn mein Herz war kalt, ohne Liebe\n\n"
32
+ },
33
+ {
34
+ "start": 60.06,
35
+ "end": 66.24,
36
+ "text": "Jesus, da wurdest du geboren\n"
37
+ },
38
+ {
39
+ "start": 67.62,
40
+ "end": 73.8,
41
+ "text": "Licht für meine Dunkelheit\n"
42
+ },
43
+ {
44
+ "start": 75.43,
45
+ "end": 80.75,
46
+ "text": "Hoffnung meiner kalten Seele\n"
47
+ },
48
+ {
49
+ "start": 81.21,
50
+ "end": 87.2,
51
+ "text": "Trost in Not und Leid, Jesus\n\n"
52
+ },
53
+ {
54
+ "start": 89.47,
55
+ "end": 95.77,
56
+ "text": "Du hast alles selbst erlebt, hast den Thron verlassen\n"
57
+ },
58
+ {
59
+ "start": 97.12,
60
+ "end": 102.23,
61
+ "text": "Fühltest Lieben, Hassen dieser Welt\n"
62
+ },
63
+ {
64
+ "start": 104.92,
65
+ "end": 111.83,
66
+ "text": "Du verstehst das tiefste Leid, Blindheit weicht vor dir\n"
67
+ },
68
+ {
69
+ "start": 112.58,
70
+ "end": 117.89,
71
+ "text": "Schenkst dein Licht auch mir, Jesus\n\n"
72
+ },
73
+ {
74
+ "start": 120.34,
75
+ "end": 126.88,
76
+ "text": "Für dein Kommen ehr' ich dich, Majestät vom All\n"
77
+ },
78
+ {
79
+ "start": 128.17,
80
+ "end": 134.0,
81
+ "text": "Legst dich in den Stall meines Lebens\n\n"
82
+ },
83
+ {
84
+ "start": 139.33,
85
+ "end": 145.38,
86
+ "text": "Jesus, du wirst in mir geboren\n"
87
+ },
88
+ {
89
+ "start": 147.02,
90
+ "end": 153.07,
91
+ "text": "Licht für meine Dunkelheit\n"
92
+ },
93
+ {
94
+ "start": 154.8,
95
+ "end": 160.19,
96
+ "text": "Hoffnung meiner kalten Seele\n"
97
+ },
98
+ {
99
+ "start": 160.56,
100
+ "end": 166.55,
101
+ "text": "Trost in Not und Leid, Jesus\n\n"
102
+ },
103
+ {
104
+ "start": 168.38,
105
+ "end": 173.92,
106
+ "text": "Jesus, du wirst in mir geboren\n"
107
+ },
108
+ {
109
+ "start": 176.05,
110
+ "end": 181.93,
111
+ "text": "Licht für meine Dunkelheit\n"
112
+ },
113
+ {
114
+ "start": 183.81,
115
+ "end": 189.22,
116
+ "text": "Hoffnung meiner kalten Seele\n"
117
+ },
118
+ {
119
+ "start": 189.57,
120
+ "end": 200.76,
121
+ "text": "Trost in Not und Leid, Jesus, Jesus\n"
122
+ }
123
+ ]
124
+ }
alignment/Der_Baum_-_Dienstag_is_Damensauna_(2).json ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 0.36,
5
+ "end": 3.94,
6
+ "text": "Wenn ihr so weiter macht, verspielt ihr meine Zukunft\n"
7
+ },
8
+ {
9
+ "start": 3.94,
10
+ "end": 5.24,
11
+ "text": "Seid ihr doof?\n\n"
12
+ },
13
+ {
14
+ "start": 7.89,
15
+ "end": 9.64,
16
+ "text": "Vor dem Küchenfenster\n"
17
+ },
18
+ {
19
+ "start": 12.38,
20
+ "end": 13.92,
21
+ "text": "Steht ein alter Baum\n"
22
+ },
23
+ {
24
+ "start": 16.52,
25
+ "end": 18.36,
26
+ "text": "So alt wie er ist\n"
27
+ },
28
+ {
29
+ "start": 20.95,
30
+ "end": 22.28,
31
+ "text": "Krieg' ich das Grauen\n\n"
32
+ },
33
+ {
34
+ "start": 25.42,
35
+ "end": 27.69,
36
+ "text": "Der Baum der steht da seit Jahren\n"
37
+ },
38
+ {
39
+ "start": 29.81,
40
+ "end": 32.16,
41
+ "text": "Schon lang' bevor wir da waren\n"
42
+ },
43
+ {
44
+ "start": 34.22,
45
+ "end": 36.02,
46
+ "text": "Auch wird er nicht vergehn\n"
47
+ },
48
+ {
49
+ "start": 38.67,
50
+ "end": 40.57,
51
+ "text": "Wenn die Natur es lässt geschehen\n\n"
52
+ },
53
+ {
54
+ "start": 45.31,
55
+ "end": 46.81,
56
+ "text": "Der Baum braucht nicht viel\n"
57
+ },
58
+ {
59
+ "start": 46.92,
60
+ "end": 48.86,
61
+ "text": "Er will nur überleben\n"
62
+ },
63
+ {
64
+ "start": 48.86,
65
+ "end": 50.5,
66
+ "text": "Nehmt euch ein Beispiel\n"
67
+ },
68
+ {
69
+ "start": 50.5,
70
+ "end": 53.3,
71
+ "text": "Hört auf nach Reichtum zu streben\n\n"
72
+ },
73
+ {
74
+ "start": 53.3,
75
+ "end": 55.26,
76
+ "text": "Der Baum der braucht nicht viel\n"
77
+ },
78
+ {
79
+ "start": 55.47,
80
+ "end": 57.63,
81
+ "text": "Er will nur überleben\n"
82
+ },
83
+ {
84
+ "start": 57.63,
85
+ "end": 59.27,
86
+ "text": "Nehmt euch ein Beispiel\n"
87
+ },
88
+ {
89
+ "start": 59.27,
90
+ "end": 61.96,
91
+ "text": "Hört auf nach Reichtum zu streben\n\n"
92
+ },
93
+ {
94
+ "start": 65.37,
95
+ "end": 67.61,
96
+ "text": "Wenn er könnt', würd' er erzählen\n"
97
+ },
98
+ {
99
+ "start": 69.75,
100
+ "end": 71.94,
101
+ "text": "Wer schon alles unter ihm saß\n"
102
+ },
103
+ {
104
+ "start": 74.19,
105
+ "end": 75.87,
106
+ "text": "Ihm is' egal\n"
107
+ },
108
+ {
109
+ "start": 78.35,
110
+ "end": 80.14,
111
+ "text": "Er kennt kein' Rassenhass\n\n"
112
+ },
113
+ {
114
+ "start": 83.03,
115
+ "end": 85.33,
116
+ "text": "Die Parteien, die regieren\n"
117
+ },
118
+ {
119
+ "start": 87.46,
120
+ "end": 89.62,
121
+ "text": "Sind ihm total egal\n"
122
+ },
123
+ {
124
+ "start": 91.6,
125
+ "end": 93.63,
126
+ "text": "Er spendet seine Früchte\n"
127
+ },
128
+ {
129
+ "start": 96.01,
130
+ "end": 98.05,
131
+ "text": "Dadurch ist er sehr sozial\n\n"
132
+ },
133
+ {
134
+ "start": 102.66,
135
+ "end": 104.27,
136
+ "text": "Der Baum braucht nicht viel\n"
137
+ },
138
+ {
139
+ "start": 104.27,
140
+ "end": 106.2,
141
+ "text": "Er will nur überleben\n"
142
+ },
143
+ {
144
+ "start": 106.2,
145
+ "end": 107.85,
146
+ "text": "Nehmt euch ein Beispiel\n"
147
+ },
148
+ {
149
+ "start": 107.85,
150
+ "end": 110.62,
151
+ "text": "Hört auf nach Reichtum zu streben\n\n"
152
+ },
153
+ {
154
+ "start": 110.62,
155
+ "end": 112.63,
156
+ "text": "Der Baum der braucht nicht viel\n"
157
+ },
158
+ {
159
+ "start": 112.86,
160
+ "end": 115.01,
161
+ "text": "Er will nur überleben\n"
162
+ },
163
+ {
164
+ "start": 115.01,
165
+ "end": 116.63,
166
+ "text": "Nehmt euch ein Beispiel\n"
167
+ },
168
+ {
169
+ "start": 116.63,
170
+ "end": 119.43,
171
+ "text": "Hört auf nach Reichtum zu streben\n\n"
172
+ },
173
+ {
174
+ "start": 122.69,
175
+ "end": 124.89,
176
+ "text": "Doch gibt es Idioten\n"
177
+ },
178
+ {
179
+ "start": 126.87,
180
+ "end": 129.07,
181
+ "text": "Die seine Schönheit nicht seh'n\n"
182
+ },
183
+ {
184
+ "start": 131.54,
185
+ "end": 133.2,
186
+ "text": "Für ein bisschen Kohle\n"
187
+ },
188
+ {
189
+ "start": 135.96,
190
+ "end": 137.74,
191
+ "text": "Lassen sie ihn nicht stehn\n\n"
192
+ },
193
+ {
194
+ "start": 160.0,
195
+ "end": 161.62,
196
+ "text": "Der Baum braucht nicht viel\n"
197
+ },
198
+ {
199
+ "start": 161.62,
200
+ "end": 163.53,
201
+ "text": "Er will nur überleben\n"
202
+ },
203
+ {
204
+ "start": 163.53,
205
+ "end": 165.2,
206
+ "text": "Nehmt euch ein Beispiel\n"
207
+ },
208
+ {
209
+ "start": 165.2,
210
+ "end": 167.94,
211
+ "text": "Hört auf nach Reichtum zu streben\n\n"
212
+ },
213
+ {
214
+ "start": 167.94,
215
+ "end": 169.83,
216
+ "text": "Der Baum braucht nicht viel\n"
217
+ },
218
+ {
219
+ "start": 170.15,
220
+ "end": 172.34,
221
+ "text": "Er will nur überleben\n"
222
+ },
223
+ {
224
+ "start": 172.34,
225
+ "end": 173.99,
226
+ "text": "Nehmt euch ein Beispiel\n"
227
+ },
228
+ {
229
+ "start": 173.99,
230
+ "end": 176.87,
231
+ "text": "Hört auf nach Reichtum zu streben\n"
232
+ }
233
+ ]
234
+ }
alignment/Der_Musiker_-_d-music.json ADDED
@@ -0,0 +1,464 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 36.2,
5
+ "end": 37.26,
6
+ "text": "Es ist weit gefehlt\n"
7
+ },
8
+ {
9
+ "start": 37.4,
10
+ "end": 38.39,
11
+ "text": "Dass es immer quält\n"
12
+ },
13
+ {
14
+ "start": 38.5,
15
+ "end": 39.43,
16
+ "text": "Wenn ein Musiker schlicht\n"
17
+ },
18
+ {
19
+ "start": 39.52,
20
+ "end": 40.68,
21
+ "text": "Von seinem Alltag spricht\n"
22
+ },
23
+ {
24
+ "start": 40.76,
25
+ "end": 41.91,
26
+ "text": "Sei's Melancholie\n"
27
+ },
28
+ {
29
+ "start": 42.01,
30
+ "end": 43.08,
31
+ "text": "Oder Hysterie\n"
32
+ },
33
+ {
34
+ "start": 43.08,
35
+ "end": 43.99,
36
+ "text": "Wenn ich ehrlich bin\n"
37
+ },
38
+ {
39
+ "start": 44.52,
40
+ "end": 45.2,
41
+ "text": "Hab' ich das nie\n\n"
42
+ },
43
+ {
44
+ "start": 45.37,
45
+ "end": 46.53,
46
+ "text": "Dieses magische Greifen\n"
47
+ },
48
+ {
49
+ "start": 46.53,
50
+ "end": 47.57,
51
+ "text": "Nach der neuen Idee\n"
52
+ },
53
+ {
54
+ "start": 47.66,
55
+ "end": 48.81,
56
+ "text": "Was nur möglich sei\n"
57
+ },
58
+ {
59
+ "start": 48.81,
60
+ "end": 49.88,
61
+ "text": "Mit der guten Fee\n"
62
+ },
63
+ {
64
+ "start": 49.97,
65
+ "end": 51.06,
66
+ "text": "Ist 'ne Ideologie\n"
67
+ },
68
+ {
69
+ "start": 51.12,
70
+ "end": 52.13,
71
+ "text": "Von Anfang an\n"
72
+ },
73
+ {
74
+ "start": 52.21,
75
+ "end": 53.26,
76
+ "text": "Und genau besehen\n"
77
+ },
78
+ {
79
+ "start": 53.37,
80
+ "end": 54.46,
81
+ "text": "Ist da gar nichts dran\n\n"
82
+ },
83
+ {
84
+ "start": 54.8,
85
+ "end": 56.44,
86
+ "text": "Komponieren und Dichten\n"
87
+ },
88
+ {
89
+ "start": 56.8,
90
+ "end": 57.91,
91
+ "text": "Als bräuchte man nur\n"
92
+ },
93
+ {
94
+ "start": 57.91,
95
+ "end": 59.16,
96
+ "text": "Von den Musen berichten\n"
97
+ },
98
+ {
99
+ "start": 59.16,
100
+ "end": 60.14,
101
+ "text": "So ist es nicht\n"
102
+ },
103
+ {
104
+ "start": 60.21,
105
+ "end": 61.2,
106
+ "text": "Denn wenn alles bricht\n"
107
+ },
108
+ {
109
+ "start": 61.38,
110
+ "end": 62.48,
111
+ "text": "Nimmt man doch Rückzug\n"
112
+ },
113
+ {
114
+ "start": 62.56,
115
+ "end": 63.59,
116
+ "text": "Zu Lug und Trug\n\n"
117
+ },
118
+ {
119
+ "start": 63.66,
120
+ "end": 64.69,
121
+ "text": "Einen Song zu schreiben\n"
122
+ },
123
+ {
124
+ "start": 64.69,
125
+ "end": 65.77,
126
+ "text": "Ist keine göttliche Gunst\n"
127
+ },
128
+ {
129
+ "start": 65.96,
130
+ "end": 67.09,
131
+ "text": "Ist im doppelten Sinne\n"
132
+ },
133
+ {
134
+ "start": 67.27,
135
+ "end": 68.23,
136
+ "text": "Einfach Kunst\n"
137
+ },
138
+ {
139
+ "start": 68.23,
140
+ "end": 69.38,
141
+ "text": "Ein profanes Geschehen\n"
142
+ },
143
+ {
144
+ "start": 69.38,
145
+ "end": 70.33,
146
+ "text": "Wie 'ne Schraube drehn\n"
147
+ },
148
+ {
149
+ "start": 70.52,
150
+ "end": 71.57,
151
+ "text": "Mit Geduld und Mut\n"
152
+ },
153
+ {
154
+ "start": 71.67,
155
+ "end": 73.66,
156
+ "text": "Wird alles gut\n\n"
157
+ },
158
+ {
159
+ "start": 75.41,
160
+ "end": 81.66,
161
+ "text": "(Uh, ah-ja, eh-jo)\n"
162
+ },
163
+ {
164
+ "start": 81.79,
165
+ "end": 82.94,
166
+ "text": "Ich mach' Musik, Musik\n"
167
+ },
168
+ {
169
+ "start": 83.1,
170
+ "end": 84.33,
171
+ "text": "Weil es mich schon immer trieb\n\n"
172
+ },
173
+ {
174
+ "start": 84.51,
175
+ "end": 90.9,
176
+ "text": "(Uh, ah-ja, eh-jo)\n"
177
+ },
178
+ {
179
+ "start": 90.96,
180
+ "end": 92.1,
181
+ "text": "Ich mach' Musik, Musik\n"
182
+ },
183
+ {
184
+ "start": 92.25,
185
+ "end": 93.53,
186
+ "text": "Every day and every week\n\n"
187
+ },
188
+ {
189
+ "start": 111.66,
190
+ "end": 112.78,
191
+ "text": "Doch an manchen Tagen\n"
192
+ },
193
+ {
194
+ "start": 112.78,
195
+ "end": 114.01,
196
+ "text": "Ist es einfach schwer\n"
197
+ },
198
+ {
199
+ "start": 114.01,
200
+ "end": 114.9,
201
+ "text": "Da wünscht ich mir\n"
202
+ },
203
+ {
204
+ "start": 114.97,
205
+ "end": 115.95,
206
+ "text": "Solche Musen daher\n"
207
+ },
208
+ {
209
+ "start": 116.24,
210
+ "end": 117.27,
211
+ "text": "Die mir sagen wie's geht\n"
212
+ },
213
+ {
214
+ "start": 117.38,
215
+ "end": 118.48,
216
+ "text": "Und mich einfach küssen\n"
217
+ },
218
+ {
219
+ "start": 118.48,
220
+ "end": 119.66,
221
+ "text": "Und der Song sich schreibt\n"
222
+ },
223
+ {
224
+ "start": 119.66,
225
+ "end": 120.77,
226
+ "text": "Ohne Grübeln zu müssen\n\n"
227
+ },
228
+ {
229
+ "start": 120.77,
230
+ "end": 121.67,
231
+ "text": "Doch die Grübelei\n"
232
+ },
233
+ {
234
+ "start": 121.86,
235
+ "end": 122.88,
236
+ "text": "Ist auch was Schönes dabei\n"
237
+ },
238
+ {
239
+ "start": 123.1,
240
+ "end": 124.23,
241
+ "text": "Dass du suchst und suchst\n"
242
+ },
243
+ {
244
+ "start": 124.23,
245
+ "end": 125.38,
246
+ "text": "Manchmal kräftig fluchst\n"
247
+ },
248
+ {
249
+ "start": 125.38,
250
+ "end": 126.47,
251
+ "text": "Keinen Ausweg siehst\n"
252
+ },
253
+ {
254
+ "start": 126.53,
255
+ "end": 127.55,
256
+ "text": "Und in Trübsinn fliehst\n"
257
+ },
258
+ {
259
+ "start": 127.65,
260
+ "end": 128.84,
261
+ "text": "Doch du kommst wieder raus\n"
262
+ },
263
+ {
264
+ "start": 128.84,
265
+ "end": 131.43,
266
+ "text": "Mit einem neuen Ohrenschmaus\n\n"
267
+ },
268
+ {
269
+ "start": 134.51,
270
+ "end": 135.65,
271
+ "text": "Ja, was neues zu hör'n\n"
272
+ },
273
+ {
274
+ "start": 135.65,
275
+ "end": 136.7,
276
+ "text": "Dass es noch nicht gab\n"
277
+ },
278
+ {
279
+ "start": 136.76,
280
+ "end": 137.82,
281
+ "text": "Ist der ganze Törn\n"
282
+ },
283
+ {
284
+ "start": 137.91,
285
+ "end": 138.88,
286
+ "text": "Ist der helle Tag\n\n"
287
+ },
288
+ {
289
+ "start": 138.94,
290
+ "end": 140.2,
291
+ "text": "Es ist ein Hochgefühl\n"
292
+ },
293
+ {
294
+ "start": 140.2,
295
+ "end": 141.29,
296
+ "text": "Dass sich in dir aufstellt\n"
297
+ },
298
+ {
299
+ "start": 141.36,
300
+ "end": 142.47,
301
+ "text": "Dein warmer Regen\n"
302
+ },
303
+ {
304
+ "start": 142.47,
305
+ "end": 143.65,
306
+ "text": "Der aus dir rausquellt\n"
307
+ },
308
+ {
309
+ "start": 143.65,
310
+ "end": 144.77,
311
+ "text": "Ganz allein dafür\n"
312
+ },
313
+ {
314
+ "start": 144.85,
315
+ "end": 145.86,
316
+ "text": "Lohnt der Aufwand schon\n"
317
+ },
318
+ {
319
+ "start": 145.96,
320
+ "end": 147.01,
321
+ "text": "Und die neuen Töne\n"
322
+ },
323
+ {
324
+ "start": 147.01,
325
+ "end": 149.03,
326
+ "text": "Sind der höchste Lohn\n\n"
327
+ },
328
+ {
329
+ "start": 148.55,
330
+ "end": 154.88,
331
+ "text": "(Uh, ah-ja, eh-jo)\n"
332
+ },
333
+ {
334
+ "start": 154.95,
335
+ "end": 156.07,
336
+ "text": "Ich mach' Musik, Musik\n"
337
+ },
338
+ {
339
+ "start": 156.22,
340
+ "end": 157.46,
341
+ "text": "Weil es mich schon immer trieb\n"
342
+ },
343
+ {
344
+ "start": 157.67,
345
+ "end": 164.01,
346
+ "text": "(Uh, ah-ja, eh-jo)\n"
347
+ },
348
+ {
349
+ "start": 164.1,
350
+ "end": 165.22,
351
+ "text": "Ich mach' Musik, Musik\n"
352
+ },
353
+ {
354
+ "start": 165.37,
355
+ "end": 166.56,
356
+ "text": "Every day and every week\n\n"
357
+ },
358
+ {
359
+ "start": 203.1,
360
+ "end": 204.24,
361
+ "text": "Zu den schönsten Sachen\n"
362
+ },
363
+ {
364
+ "start": 204.24,
365
+ "end": 205.37,
366
+ "text": "Am Musik machen\n"
367
+ },
368
+ {
369
+ "start": 205.37,
370
+ "end": 206.51,
371
+ "text": "Gehört der Jam\n"
372
+ },
373
+ {
374
+ "start": 206.51,
375
+ "end": 207.71,
376
+ "text": "Den andere entfachen\n"
377
+ },
378
+ {
379
+ "start": 207.71,
380
+ "end": 208.77,
381
+ "text": "Du gemeinsam suchst\n"
382
+ },
383
+ {
384
+ "start": 208.77,
385
+ "end": 209.94,
386
+ "text": "Und gemeinsam findest\n"
387
+ },
388
+ {
389
+ "start": 209.94,
390
+ "end": 210.97,
391
+ "text": "Ohne dass du dich\n"
392
+ },
393
+ {
394
+ "start": 211.08,
395
+ "end": 212.14,
396
+ "text": "Nur an Formen bindest\n\n"
397
+ },
398
+ {
399
+ "start": 212.34,
400
+ "end": 213.34,
401
+ "text": "Ins Blaue hinein\n"
402
+ },
403
+ {
404
+ "start": 213.34,
405
+ "end": 215.16,
406
+ "text": "Zu viert zu drei'n oder zwei'n\n"
407
+ },
408
+ {
409
+ "start": 215.16,
410
+ "end": 216.14,
411
+ "text": "Ist ein Geschehen\n"
412
+ },
413
+ {
414
+ "start": 216.14,
415
+ "end": 217.24,
416
+ "text": "Mit göttlichen Weihen\n"
417
+ },
418
+ {
419
+ "start": 217.51,
420
+ "end": 219.08,
421
+ "text": "Communio, im engsten Sinne\n"
422
+ },
423
+ {
424
+ "start": 219.08,
425
+ "end": 220.11,
426
+ "text": "Eine Einigkeit\n"
427
+ },
428
+ {
429
+ "start": 220.11,
430
+ "end": 221.46,
431
+ "text": "In der ich mich gewinne\n\n"
432
+ },
433
+ {
434
+ "start": 223.97,
435
+ "end": 230.24,
436
+ "text": "(Uh, ah-ja, eh-jo)\n"
437
+ },
438
+ {
439
+ "start": 230.37,
440
+ "end": 231.51,
441
+ "text": "Ich mach' Musik, Musik\n"
442
+ },
443
+ {
444
+ "start": 231.65,
445
+ "end": 232.96,
446
+ "text": "Weil es mich schon immer trieb\n"
447
+ },
448
+ {
449
+ "start": 233.1,
450
+ "end": 239.4,
451
+ "text": "(Uh, ah-ja, eh-jo)\n"
452
+ },
453
+ {
454
+ "start": 239.53,
455
+ "end": 240.68,
456
+ "text": "Ich mach' Musik, Musik\n"
457
+ },
458
+ {
459
+ "start": 240.8,
460
+ "end": 242.19,
461
+ "text": "Every day and every week\n"
462
+ }
463
+ ]
464
+ }
alignment/Die_Revolution_gehört_Dir!_-_partysahnen.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 20.43,
5
+ "end": 23.22,
6
+ "text": "Weißt du noch damals\n"
7
+ },
8
+ {
9
+ "start": 23.27,
10
+ "end": 26.4,
11
+ "text": "Als wir durch die Straßen gingen\n"
12
+ },
13
+ {
14
+ "start": 26.93,
15
+ "end": 29.4,
16
+ "text": "Weißt du noch damals\n"
17
+ },
18
+ {
19
+ "start": 29.4,
20
+ "end": 32.63,
21
+ "text": "Als die Revolution in den Köpfen war\n\n"
22
+ },
23
+ {
24
+ "start": 33.41,
25
+ "end": 35.86,
26
+ "text": "Und damals dachten sie\n"
27
+ },
28
+ {
29
+ "start": 36.05,
30
+ "end": 39.5,
31
+ "text": "Sie wären unbesiegbar\n"
32
+ },
33
+ {
34
+ "start": 39.92,
35
+ "end": 42.59,
36
+ "text": "Und damals fühlten sie sich\n"
37
+ },
38
+ {
39
+ "start": 42.59,
40
+ "end": 46.13,
41
+ "text": "Zusammen einfach unschlagbar\n\n"
42
+ },
43
+ {
44
+ "start": 66.37,
45
+ "end": 68.58,
46
+ "text": "Heute sind sie\n"
47
+ },
48
+ {
49
+ "start": 68.78,
50
+ "end": 71.72,
51
+ "text": "In Seattle und Cancún\n"
52
+ },
53
+ {
54
+ "start": 72.36,
55
+ "end": 74.99,
56
+ "text": "Streiten für Freiheit\n"
57
+ },
58
+ {
59
+ "start": 75.27,
60
+ "end": 78.68,
61
+ "text": "Und für Revoluzzer-Ruhm\n\n"
62
+ },
63
+ {
64
+ "start": 79.11,
65
+ "end": 81.53,
66
+ "text": "Sie rufen gemeinsam\n"
67
+ },
68
+ {
69
+ "start": 80.7,
70
+ "end": 84.91,
71
+ "text": "(Rufen gemeinsam)\n"
72
+ },
73
+ {
74
+ "start": 81.57,
75
+ "end": 84.8,
76
+ "text": "Zur letzten großen Schlacht\n"
77
+ },
78
+ {
79
+ "start": 85.38,
80
+ "end": 88.13,
81
+ "text": "Den Hüttenfrieden\n"
82
+ },
83
+ {
84
+ "start": 87.33,
85
+ "end": 91.63,
86
+ "text": "(Frieden)\n"
87
+ },
88
+ {
89
+ "start": 88.25,
90
+ "end": 91.63,
91
+ "text": "Rohe Gewalt kostet Macht\n\n"
92
+ },
93
+ {
94
+ "start": 91.9,
95
+ "end": 94.24,
96
+ "text": "Und ich steh' auf der Straße\n"
97
+ },
98
+ {
99
+ "start": 93.71,
100
+ "end": 95.83,
101
+ "text": "(Ich steh auf der Straße)\n"
102
+ },
103
+ {
104
+ "start": 95.3,
105
+ "end": 98.05,
106
+ "text": "Und weiß nicht, was soll ich hier\n"
107
+ },
108
+ {
109
+ "start": 96.97,
110
+ "end": 99.68,
111
+ "text": "(Und weiß nicht, was soll ich hier)\n"
112
+ },
113
+ {
114
+ "start": 98.59,
115
+ "end": 100.39,
116
+ "text": "Ich bin nicht dagegen\n"
117
+ },
118
+ {
119
+ "start": 100.26,
120
+ "end": 101.98,
121
+ "text": "(Ich bin nicht dagegen)\n"
122
+ },
123
+ {
124
+ "start": 101.84,
125
+ "end": 103.99,
126
+ "text": "Ich bin nicht dafür\n"
127
+ },
128
+ {
129
+ "start": 103.27,
130
+ "end": 105.39,
131
+ "text": "(Und ich bin nicht dafür)\n"
132
+ },
133
+ {
134
+ "start": 105.03,
135
+ "end": 107.5,
136
+ "text": "Ich fühl' meine Ohnmacht\n"
137
+ },
138
+ {
139
+ "start": 106.67,
140
+ "end": 108.83,
141
+ "text": "(Ich fühl' meine Ohnmacht)\n"
142
+ },
143
+ {
144
+ "start": 108.34,
145
+ "end": 110.56,
146
+ "text": "Und geh' jetzt nach Hause\n"
147
+ },
148
+ {
149
+ "start": 109.97,
150
+ "end": 111.65,
151
+ "text": "(Und geh' jetzt nach Hause)\n"
152
+ },
153
+ {
154
+ "start": 111.53,
155
+ "end": 114.2,
156
+ "text": "Wo seid ihr denn alle?\n"
157
+ },
158
+ {
159
+ "start": 113.1,
160
+ "end": 115.43,
161
+ "text": "(Wo seid ihr denn alle?)\n"
162
+ },
163
+ {
164
+ "start": 114.78,
165
+ "end": 117.58,
166
+ "text": "Die Bühne gehört jetzt dir\n\n"
167
+ },
168
+ {
169
+ "start": 144.04,
170
+ "end": 146.5,
171
+ "text": "Die Revolution gehört dir\n"
172
+ },
173
+ {
174
+ "start": 145.64,
175
+ "end": 148.65,
176
+ "text": "(Die Revolution)\n"
177
+ },
178
+ {
179
+ "start": 147.32,
180
+ "end": 149.77,
181
+ "text": "Die Revolution gehört dir\n"
182
+ },
183
+ {
184
+ "start": 148.94,
185
+ "end": 151.91,
186
+ "text": "(Die Revolution)\n"
187
+ },
188
+ {
189
+ "start": 150.54,
190
+ "end": 153.14,
191
+ "text": "Die Revolution gehört dir\n"
192
+ },
193
+ {
194
+ "start": 152.18,
195
+ "end": 155.07,
196
+ "text": "(Die Revolution)\n"
197
+ },
198
+ {
199
+ "start": 153.76,
200
+ "end": 156.42,
201
+ "text": "Die Revolution gehört dir\n"
202
+ },
203
+ {
204
+ "start": 155.39,
205
+ "end": 160.5,
206
+ "text": "(Die Revolution)\n"
207
+ }
208
+ ]
209
+ }
alignment/Diosa_de_la_noche_-_Brunela_Crochenci.json ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 11.21,
5
+ "end": 15.88,
6
+ "text": "Ella es un misterio para la humanidad\n"
7
+ },
8
+ {
9
+ "start": 16.62,
10
+ "end": 21.05,
11
+ "text": "No hay leyenda alguna que revele su verdad\n"
12
+ },
13
+ {
14
+ "start": 21.91,
15
+ "end": 26.57,
16
+ "text": "Viaja entre las sombras, es la eterna oscuridad\n"
17
+ },
18
+ {
19
+ "start": 27.38,
20
+ "end": 31.27,
21
+ "text": "Deja que te cuente un poco más\n\n"
22
+ },
23
+ {
24
+ "start": 32.7,
25
+ "end": 37.23,
26
+ "text": "Cabellos de plata y mirada de cristal\n"
27
+ },
28
+ {
29
+ "start": 38.02,
30
+ "end": 42.42,
31
+ "text": "Una piel radiante y oscura como el mar\n"
32
+ },
33
+ {
34
+ "start": 43.23,
35
+ "end": 47.86,
36
+ "text": "Las criaturas duermen con su arrullo angelical\n"
37
+ },
38
+ {
39
+ "start": 48.66,
40
+ "end": 52.89,
41
+ "text": "Deja que te cuente un poco más\n\n"
42
+ },
43
+ {
44
+ "start": 53.69,
45
+ "end": 60.74,
46
+ "text": "Y dicen que ella vive aquí desde hace años\n"
47
+ },
48
+ {
49
+ "start": 61.65,
50
+ "end": 63.72,
51
+ "text": "Y que pocos la verán\n"
52
+ },
53
+ {
54
+ "start": 64.28,
55
+ "end": 73.06,
56
+ "text": "Y dicen que nadie pudo olvidar su canto, oh, uoh\n\n"
57
+ },
58
+ {
59
+ "start": 75.36,
60
+ "end": 79.91,
61
+ "text": "Ella es un misterio para la humanidad\n"
62
+ },
63
+ {
64
+ "start": 80.7,
65
+ "end": 85.11,
66
+ "text": "Pero nadie duda de su inmortalidad\n"
67
+ },
68
+ {
69
+ "start": 86.03,
70
+ "end": 90.2,
71
+ "text": "Nadie le hace sombra, es la eterna oscuridad\n"
72
+ },
73
+ {
74
+ "start": 91.37,
75
+ "end": 95.3,
76
+ "text": "Deja que te cuente un poco más\n\n"
77
+ },
78
+ {
79
+ "start": 96.69,
80
+ "end": 101.36,
81
+ "text": "Fue incomprendida a causa de su gran poder\n"
82
+ },
83
+ {
84
+ "start": 102.03,
85
+ "end": 106.58,
86
+ "text": "Algo en su mirada puede hacerte estremecer\n"
87
+ },
88
+ {
89
+ "start": 107.33,
90
+ "end": 111.38,
91
+ "text": "Carga con heridas que no dejan de doler\n"
92
+ },
93
+ {
94
+ "start": 112.7,
95
+ "end": 116.69,
96
+ "text": "Deja que te cuente un poco más\n\n"
97
+ },
98
+ {
99
+ "start": 117.61,
100
+ "end": 124.84,
101
+ "text": "Y dicen que ella vive aquí desde hace años\n"
102
+ },
103
+ {
104
+ "start": 125.64,
105
+ "end": 127.66,
106
+ "text": "Y que pocos la verán\n"
107
+ },
108
+ {
109
+ "start": 128.28,
110
+ "end": 137.38,
111
+ "text": "Y dicen que nadie pudo olvidar su canto, oh, uoh\n"
112
+ },
113
+ {
114
+ "start": 138.95,
115
+ "end": 149.5,
116
+ "text": "Uh-oh-oh, uh-oh-oh-oh, uh-oh-oh, uh-oh-oh-oh\n"
117
+ },
118
+ {
119
+ "start": 149.71,
120
+ "end": 159.95,
121
+ "text": "Uh-oh-oh, uh-oh-oh, oh-oh, oh\n\n"
122
+ },
123
+ {
124
+ "start": 160.04,
125
+ "end": 167.68,
126
+ "text": "Y dicen que ella vive aquí desde hace años\n"
127
+ },
128
+ {
129
+ "start": 168.35,
130
+ "end": 170.48,
131
+ "text": "Y que pocos la verán\n"
132
+ },
133
+ {
134
+ "start": 170.97,
135
+ "end": 181.25,
136
+ "text": "Y dicen que nadie pudo olvidar su canto, oh, uoh-uoh\n"
137
+ },
138
+ {
139
+ "start": 181.57,
140
+ "end": 192.25,
141
+ "text": "Uh-oh-oh, uh-oh-oh-oh, uh-oh-oh, uh-oh-oh-oh\n"
142
+ },
143
+ {
144
+ "start": 192.32,
145
+ "end": 202.63,
146
+ "text": "Uh-oh-oh, uh-oh-oh, oh-oh, oh\n"
147
+ }
148
+ ]
149
+ }
alignment/Drei_Nüsse_-_patrouille.json ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 16.48,
5
+ "end": 19.33,
6
+ "text": "Komm her, komm her, komm her zu mir\n"
7
+ },
8
+ {
9
+ "start": 20.0,
10
+ "end": 23.26,
11
+ "text": "Du hast drei Wünsche frei, komm und sag, was wünschst du dir?\n"
12
+ },
13
+ {
14
+ "start": 23.84,
15
+ "end": 26.79,
16
+ "text": "Komm her, komm her, komm her, mein Kind\n"
17
+ },
18
+ {
19
+ "start": 27.36,
20
+ "end": 30.76,
21
+ "text": "Ich hab' für dich drei Nüsse, die für deine Wünsche sind\n\n"
22
+ },
23
+ {
24
+ "start": 31.07,
25
+ "end": 34.13,
26
+ "text": "Drei Nüsse, das ist cool, Mann, wie im Film vom Aschenbrödel\n"
27
+ },
28
+ {
29
+ "start": 34.46,
30
+ "end": 37.04,
31
+ "text": "Endlich Schluss mit all den Sorgen von gestern\n"
32
+ },
33
+ {
34
+ "start": 37.33,
35
+ "end": 40.61,
36
+ "text": "Heute und morgen geht nur noch die Party ab, her mit den Nüssen\n"
37
+ },
38
+ {
39
+ "start": 40.77,
40
+ "end": 42.68,
41
+ "text": "Ich geh ins KDW zum Shoppen\n"
42
+ },
43
+ {
44
+ "start": 42.76,
45
+ "end": 46.41,
46
+ "text": "Korken knallen, Hüllen fallen, und die Popkörner poppen\n"
47
+ },
48
+ {
49
+ "start": 46.7,
50
+ "end": 49.85,
51
+ "text": "Nie wieder das Gerödel und nie wieder Füße küssen\n"
52
+ },
53
+ {
54
+ "start": 50.14,
55
+ "end": 53.71,
56
+ "text": "Meine Eier muss ich nicht mehr bei der Nachbarin ausborgen\n"
57
+ },
58
+ {
59
+ "start": 53.71,
60
+ "end": 57.23,
61
+ "text": "Ich nehm Geld, Auto, Yacht, 'n paar von den krassesten Schnitten\n"
62
+ },
63
+ {
64
+ "start": 57.41,
65
+ "end": 61.15,
66
+ "text": "Du weißt, die echten Luxusteile mit den monstergroßen Augen\n"
67
+ },
68
+ {
69
+ "start": 61.28,
70
+ "end": 64.66,
71
+ "text": "Und die andern sollen sich meine Tracks aus dem Netz runtersaugen\n"
72
+ },
73
+ {
74
+ "start": 64.96,
75
+ "end": 68.23,
76
+ "text": "Ich sag an, was geht und muss nicht mehr um Anerkennung bitten\n\n"
77
+ },
78
+ {
79
+ "start": 68.23,
80
+ "end": 71.1,
81
+ "text": "Komm her, komm her, komm her zu mir\n"
82
+ },
83
+ {
84
+ "start": 71.66,
85
+ "end": 75.06,
86
+ "text": "Du hast drei Wünsche frei, komm und sag, was wünschst du dir?\n"
87
+ },
88
+ {
89
+ "start": 75.6,
90
+ "end": 78.53,
91
+ "text": "Komm her, komm her, komm her mein Kind\n"
92
+ },
93
+ {
94
+ "start": 79.07,
95
+ "end": 82.27,
96
+ "text": "Ich hab' für dich drei Nüsse, die für deine Wünsche sind\n\n"
97
+ },
98
+ {
99
+ "start": 82.27,
100
+ "end": 83.94,
101
+ "text": "Okay, das war 'n bisschen viel\n"
102
+ },
103
+ {
104
+ "start": 84.1,
105
+ "end": 86.95,
106
+ "text": "Ich nehm' nur Cash, die anderen Sachen kann ich kaufen\n"
107
+ },
108
+ {
109
+ "start": 86.95,
110
+ "end": 90.09,
111
+ "text": "Obwohl dann würd' ich nicht in der Rotation laufen\n"
112
+ },
113
+ {
114
+ "start": 90.37,
115
+ "end": 94.07,
116
+ "text": "Wunsch Nummer zwei ist also ein fetter Hit, aber nein\n"
117
+ },
118
+ {
119
+ "start": 94.26,
120
+ "end": 97.77,
121
+ "text": "Da fällt mir ein gedopter Erfolg kann nicht befriedigend sein\n"
122
+ },
123
+ {
124
+ "start": 98.0,
125
+ "end": 100.75,
126
+ "text": "Okay, also was ist mit den Weibern?\n"
127
+ },
128
+ {
129
+ "start": 101.0,
130
+ "end": 103.73,
131
+ "text": "Ich als Hahn im Korb, voll mit gepiercten Leibern\n"
132
+ },
133
+ {
134
+ "start": 103.73,
135
+ "end": 107.66,
136
+ "text": "Ist das wirklich geil? Mechanischer Sex und von keiner geliebt?\n"
137
+ },
138
+ {
139
+ "start": 108.05,
140
+ "end": 111.68,
141
+ "text": "Und keine, die auf mich von Herzen auch nur zehn Cent gibt\n"
142
+ },
143
+ {
144
+ "start": 111.88,
145
+ "end": 115.33,
146
+ "text": "Das ist doch Scheisse, Mann, ich bin nicht wie die leitenden Reichen\n"
147
+ },
148
+ {
149
+ "start": 115.53,
150
+ "end": 117.11,
151
+ "text": "Auf ihren riesigen Booten\n"
152
+ },
153
+ {
154
+ "start": 117.38,
155
+ "end": 121.01,
156
+ "text": "Die sich Liebe kaufen, die seelisch Toten\n"
157
+ },
158
+ {
159
+ "start": 121.5,
160
+ "end": 124.96,
161
+ "text": "Wer steht schon auf den Sex und Style der reitenden Leichen?\n\n"
162
+ },
163
+ {
164
+ "start": 127.28,
165
+ "end": 130.12,
166
+ "text": "Komm her, komm her, komm her zu mir\n"
167
+ },
168
+ {
169
+ "start": 130.76,
170
+ "end": 134.03,
171
+ "text": "Du hast drei Wünsche frei, komm und sag, was wünschst du dir?\n"
172
+ },
173
+ {
174
+ "start": 134.69,
175
+ "end": 137.63,
176
+ "text": "Komm her, komm her, komm her, mein Kind\n"
177
+ },
178
+ {
179
+ "start": 138.14,
180
+ "end": 141.42,
181
+ "text": "Ich hab' für dich drei Nüsse, die für deine Wünsche sind\n\n"
182
+ },
183
+ {
184
+ "start": 156.03,
185
+ "end": 159.38,
186
+ "text": "Und überhaupt, es wär' doch traurig auf der Yacht rumzulungern\n"
187
+ },
188
+ {
189
+ "start": 160.08,
190
+ "end": 162.39,
191
+ "text": "Während anderswo die Menschen verhungern\n"
192
+ },
193
+ {
194
+ "start": 162.62,
195
+ "end": 166.08,
196
+ "text": "Die jeden Tag die Hummerstückchen aus der Schale zu nagen\n"
197
+ },
198
+ {
199
+ "start": 166.27,
200
+ "end": 169.53,
201
+ "text": "Wenn nebenan die Raketen in Wohnzimmern einschlagen\n"
202
+ },
203
+ {
204
+ "start": 170.2,
205
+ "end": 174.15,
206
+ "text": "Also bleibt nur das Auto, aber könnte ein Leben sinnloser sein?\n"
207
+ },
208
+ {
209
+ "start": 174.55,
210
+ "end": 178.36,
211
+ "text": "Da kommt 'ne Fee, du hast drei Wünsche frei und dir fällt nur Auto ein?\n"
212
+ },
213
+ {
214
+ "start": 178.75,
215
+ "end": 181.76,
216
+ "text": "Für die wichtigen Dinge, Liebe, Glück und Respekt\n"
217
+ },
218
+ {
219
+ "start": 181.88,
220
+ "end": 184.44,
221
+ "text": "Reicht kein frommer Wunsch, das hab' ich gecheckt\n"
222
+ },
223
+ {
224
+ "start": 184.88,
225
+ "end": 189.05,
226
+ "text": "Du gehst mir voll auf die Nüsse, Fee, keiner hat dich hier vermisst\n"
227
+ },
228
+ {
229
+ "start": 189.22,
230
+ "end": 193.96,
231
+ "text": "Also pack deine scheiß Nüsse ein, verpiss dich, you are dismissed!\n\n"
232
+ },
233
+ {
234
+ "start": 193.76,
235
+ "end": 196.51,
236
+ "text": "Komm her, komm her, komm her zu mir\n"
237
+ },
238
+ {
239
+ "start": 197.2,
240
+ "end": 200.43,
241
+ "text": "Du hast drei Wünsche frei, komm und sag, was wünschst du dir?\n"
242
+ },
243
+ {
244
+ "start": 201.1,
245
+ "end": 204.04,
246
+ "text": "Komm her, komm her, komm her, mein Kind\n"
247
+ },
248
+ {
249
+ "start": 204.65,
250
+ "end": 207.95,
251
+ "text": "Ich hab' für dich drei Nüsse, die für deine Wünsche sind\n\n"
252
+ },
253
+ {
254
+ "start": 208.53,
255
+ "end": 211.44,
256
+ "text": "Komm her, komm her, komm her zu mir\n"
257
+ },
258
+ {
259
+ "start": 211.94,
260
+ "end": 215.33,
261
+ "text": "Du hast drei Wünsche frei, komm und sag, was wünschst du dir?\n"
262
+ },
263
+ {
264
+ "start": 215.91,
265
+ "end": 218.83,
266
+ "text": "Komm her, komm her, komm her, mein Kind\n"
267
+ },
268
+ {
269
+ "start": 219.38,
270
+ "end": 222.73,
271
+ "text": "Ich hab' für dich drei Nüsse, die für deine Wünsche sind\n"
272
+ }
273
+ ]
274
+ }
alignment/En_liberté_-_tom.leyak.json ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 14.73,
5
+ "end": 19.2,
6
+ "text": "J'viens d'me réveiller à midi\n"
7
+ },
8
+ {
9
+ "start": 19.4,
10
+ "end": 25.53,
11
+ "text": "Pas pressé, j'ai tout mon temps aujourd'hui\n"
12
+ },
13
+ {
14
+ "start": 26.33,
15
+ "end": 30.56,
16
+ "text": "Un temps printanier me sourit\n"
17
+ },
18
+ {
19
+ "start": 30.81,
20
+ "end": 37.12,
21
+ "text": "J'vais glander et cette idée me ravit\n\n"
22
+ },
23
+ {
24
+ "start": 38.9,
25
+ "end": 45.16,
26
+ "text": "Peu importe qu'il n'y ait rien dans le frigo\n"
27
+ },
28
+ {
29
+ "start": 45.51,
30
+ "end": 49.72,
31
+ "text": "J'me contenterai bien d'une kro\n"
32
+ },
33
+ {
34
+ "start": 50.14,
35
+ "end": 54.0,
36
+ "text": "Je fumerai la fin d'un bédo\n"
37
+ },
38
+ {
39
+ "start": 54.81,
40
+ "end": 61.16,
41
+ "text": "J'me poserai en calbute dans l'jardin\n"
42
+ },
43
+ {
44
+ "start": 61.52,
45
+ "end": 66.16,
46
+ "text": "Cet instant compte, demain on verra bien\n"
47
+ },
48
+ {
49
+ "start": 66.31,
50
+ "end": 70.29,
51
+ "text": "Pas d'heure à ma montre, je suis serein\n\n"
52
+ },
53
+ {
54
+ "start": 70.88,
55
+ "end": 74.88,
56
+ "text": "Une gratte, quelques notes de la zik\n"
57
+ },
58
+ {
59
+ "start": 75.45,
60
+ "end": 81.32,
61
+ "text": "Et des potes, un petit moment sympathique\n"
62
+ },
63
+ {
64
+ "start": 82.32,
65
+ "end": 86.31,
66
+ "text": "On soule les voisins, c'est cyclique\n"
67
+ },
68
+ {
69
+ "start": 86.74,
70
+ "end": 93.05,
71
+ "text": "Ces gros chiens nous menacent d'appeler les flics\n\n"
72
+ },
73
+ {
74
+ "start": 93.75,
75
+ "end": 100.12,
76
+ "text": "Et j'entends les sirènes qui retentissent\n"
77
+ },
78
+ {
79
+ "start": 100.48,
80
+ "end": 104.66,
81
+ "text": "C'est certainement la police\n"
82
+ },
83
+ {
84
+ "start": 108.3,
85
+ "end": 114.79,
86
+ "text": "Mais eux commencent à tambouriner à ma porte\n"
87
+ },
88
+ {
89
+ "start": 115.3,
90
+ "end": 119.41,
91
+ "text": "En gueulant que la musique est trop forte\n"
92
+ },
93
+ {
94
+ "start": 119.85,
95
+ "end": 122.82,
96
+ "text": "J'les envoie parler à mon short\n\n"
97
+ },
98
+ {
99
+ "start": 126.85,
100
+ "end": 132.02,
101
+ "text": "Tam-di-don, zé-dène-den-ouai-en\n\n"
102
+ },
103
+ {
104
+ "start": 132.55,
105
+ "end": 135.01,
106
+ "text": "Outrage à agent, menottes aux poings\n"
107
+ },
108
+ {
109
+ "start": 135.01,
110
+ "end": 137.35,
111
+ "text": "Et m'embarquant face aux voisins\n"
112
+ },
113
+ {
114
+ "start": 137.35,
115
+ "end": 138.99,
116
+ "text": "Eux qui sourient d'me voir emmené\n"
117
+ },
118
+ {
119
+ "start": 139.61,
120
+ "end": 143.76,
121
+ "text": "Poussé à l'arrière d'la voiture\n"
122
+ },
123
+ {
124
+ "start": 146.21,
125
+ "end": 148.75,
126
+ "text": "Au commissariat et en calbute\n"
127
+ },
128
+ {
129
+ "start": 148.75,
130
+ "end": 150.97,
131
+ "text": "Assis à côté d'une pute\n"
132
+ },
133
+ {
134
+ "start": 150.97,
135
+ "end": 153.29,
136
+ "text": "J'attends qu'un gardien de la paix\n"
137
+ },
138
+ {
139
+ "start": 153.29,
140
+ "end": 157.18,
141
+ "text": "Vienne me chercher pour m'questionner\n"
142
+ },
143
+ {
144
+ "start": 159.88,
145
+ "end": 162.36,
146
+ "text": "Cette journée avait bien commencé\n"
147
+ },
148
+ {
149
+ "start": 162.36,
150
+ "end": 164.75,
151
+ "text": "J'vois pas ce qui a pu merder\n"
152
+ },
153
+ {
154
+ "start": 164.75,
155
+ "end": 167.03,
156
+ "text": "Le son trop fort, c'est ridicule\n"
157
+ },
158
+ {
159
+ "start": 167.03,
160
+ "end": 168.97,
161
+ "text": "Maintenant je suis en cellule\n\n"
162
+ },
163
+ {
164
+ "start": 169.09,
165
+ "end": 175.52,
166
+ "text": "Mais j'continue encore à faire la fête\n"
167
+ },
168
+ {
169
+ "start": 175.86,
170
+ "end": 179.94,
171
+ "text": "Avec les putes et leurs proxénètes\n"
172
+ },
173
+ {
174
+ "start": 180.48,
175
+ "end": 183.47,
176
+ "text": "J'avais gardé un petit pet\n"
177
+ },
178
+ {
179
+ "start": 183.97,
180
+ "end": 190.36,
181
+ "text": "La cellule on va vraiment l'enfumer\n"
182
+ },
183
+ {
184
+ "start": 190.73,
185
+ "end": 194.94,
186
+ "text": "J'm'en fous, il peut plus rien m'arriver\n"
187
+ },
188
+ {
189
+ "start": 195.35,
190
+ "end": 197.96,
191
+ "text": "Moi, j'suis déjà enfermé\n\n"
192
+ },
193
+ {
194
+ "start": 198.85,
195
+ "end": 205.32,
196
+ "text": "Mais j'continue encore à faire la fête\n"
197
+ },
198
+ {
199
+ "start": 205.59,
200
+ "end": 209.84,
201
+ "text": "J'fais tourner l'joint, j'fais des soufflettes\n"
202
+ },
203
+ {
204
+ "start": 210.22,
205
+ "end": 213.29,
206
+ "text": "Et ça nous monte à la tête\n"
207
+ },
208
+ {
209
+ "start": 213.67,
210
+ "end": 220.04,
211
+ "text": "La cellule on l'a vraiment enfumée\n"
212
+ },
213
+ {
214
+ "start": 220.42,
215
+ "end": 224.64,
216
+ "text": "J'm'en fous, il peut plus rien m'arriver\n"
217
+ },
218
+ {
219
+ "start": 225.02,
220
+ "end": 228.74,
221
+ "text": "J'suis toujours en liberté\n"
222
+ }
223
+ ]
224
+ }
alignment/Esencia_-_NandoMalo_.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 19.47,
5
+ "end": 23.94,
6
+ "text": "Ya casi está anocheciendo y me puse a recordar\n"
7
+ },
8
+ {
9
+ "start": 24.29,
10
+ "end": 28.72,
11
+ "text": "Ya casi está anocheciendo y me puse a recordar\n"
12
+ },
13
+ {
14
+ "start": 29.06,
15
+ "end": 33.43,
16
+ "text": "Las costumbres de mi abuelo cuando se ponía a pescar\n"
17
+ },
18
+ {
19
+ "start": 33.88,
20
+ "end": 38.3,
21
+ "text": "Las costumbres de mi abuelo cuando se ponía a pescar\n"
22
+ },
23
+ {
24
+ "start": 38.7,
25
+ "end": 43.21,
26
+ "text": "Afinaba su guitarra y recogía la atarraya\n"
27
+ },
28
+ {
29
+ "start": 43.5,
30
+ "end": 48.02,
31
+ "text": "Afinaba su guitarra y recogía la atarraya\n"
32
+ },
33
+ {
34
+ "start": 48.29,
35
+ "end": 52.38,
36
+ "text": "Llenaba alguna tinaja y a esperar la madrugada\n"
37
+ },
38
+ {
39
+ "start": 53.09,
40
+ "end": 57.05,
41
+ "text": "Llenaba alguna tinaja y a esperar la madrugada\n\n"
42
+ },
43
+ {
44
+ "start": 57.27,
45
+ "end": 60.14,
46
+ "text": "¿Y qué cantaba mi abuelo?\n"
47
+ },
48
+ {
49
+ "start": 60.3,
50
+ "end": 62.2,
51
+ "text": "De noche con su guitarra\n"
52
+ },
53
+ {
54
+ "start": 62.27,
55
+ "end": 64.82,
56
+ "text": "¿Qué cantaba mi abuelo?\n"
57
+ },
58
+ {
59
+ "start": 65.07,
60
+ "end": 66.95,
61
+ "text": "Canciones que hoy ya no cantan\n"
62
+ },
63
+ {
64
+ "start": 67.05,
65
+ "end": 69.88,
66
+ "text": "¿Qué cantaba mi abuelo?\n"
67
+ },
68
+ {
69
+ "start": 69.88,
70
+ "end": 71.75,
71
+ "text": "Al irse de madrugada\n"
72
+ },
73
+ {
74
+ "start": 71.9,
75
+ "end": 74.45,
76
+ "text": "¿Qué cantaba mi abuelo?\n"
77
+ },
78
+ {
79
+ "start": 74.67,
80
+ "end": 76.67,
81
+ "text": "Canciones que hoy ya no cantan\n\n"
82
+ },
83
+ {
84
+ "start": 98.03,
85
+ "end": 99.51,
86
+ "text": "Y esta es mi esencia\n"
87
+ },
88
+ {
89
+ "start": 99.96,
90
+ "end": 101.64,
91
+ "text": "La esencia de mis abuelos\n"
92
+ },
93
+ {
94
+ "start": 102.24,
95
+ "end": 104.36,
96
+ "text": "La cumbia\n"
97
+ },
98
+ {
99
+ "start": 105.16,
100
+ "end": 105.89,
101
+ "text": "¡Ay, mamá!\n\n"
102
+ },
103
+ {
104
+ "start": 125.06,
105
+ "end": 129.31,
106
+ "text": "Ya casi está amaneciendo y el viejo está preparao\n"
107
+ },
108
+ {
109
+ "start": 129.86,
110
+ "end": 134.29,
111
+ "text": "Ya casi está amaneciendo y el viejo está preparao\n"
112
+ },
113
+ {
114
+ "start": 134.65,
115
+ "end": 139.19,
116
+ "text": "Se encomienda al padre santo y se toma el café colao\n"
117
+ },
118
+ {
119
+ "start": 139.49,
120
+ "end": 143.99,
121
+ "text": "Se encomienda al padre santo y se toma el café colao\n"
122
+ },
123
+ {
124
+ "start": 144.29,
125
+ "end": 148.8,
126
+ "text": "Alista ya su canoa y le monta la atarraya\n"
127
+ },
128
+ {
129
+ "start": 149.09,
130
+ "end": 153.6,
131
+ "text": "Alista ya su canoa y le monta la atarraya\n"
132
+ },
133
+ {
134
+ "start": 153.85,
135
+ "end": 158.26,
136
+ "text": "Le da un besito a la vieja y no olvida su guitarra\n"
137
+ },
138
+ {
139
+ "start": 158.7,
140
+ "end": 162.94,
141
+ "text": "Le da un besito a la vieja y no olvida su guitarra\n\n"
142
+ },
143
+ {
144
+ "start": 162.94,
145
+ "end": 165.77,
146
+ "text": "¿Y qué cantaba mi abuelo?\n"
147
+ },
148
+ {
149
+ "start": 165.89,
150
+ "end": 167.73,
151
+ "text": "Al irse de madrugada\n"
152
+ },
153
+ {
154
+ "start": 167.87,
155
+ "end": 170.42,
156
+ "text": "¿Qué cantaba mi abuelo?\n"
157
+ },
158
+ {
159
+ "start": 170.69,
160
+ "end": 172.68,
161
+ "text": "La cumbia que hoy ya no cantan\n"
162
+ },
163
+ {
164
+ "start": 172.68,
165
+ "end": 175.83,
166
+ "text": "¿Qué cantaba mi abuelo?\n"
167
+ },
168
+ {
169
+ "start": 175.5,
170
+ "end": 177.33,
171
+ "text": "Al irse de madrugada\n"
172
+ },
173
+ {
174
+ "start": 177.49,
175
+ "end": 180.03,
176
+ "text": "¿Qué cantaba mi abuelo?\n"
177
+ },
178
+ {
179
+ "start": 180.28,
180
+ "end": 182.26,
181
+ "text": "La cumbia que hoy ya no cantan\n\n"
182
+ },
183
+ {
184
+ "start": 201.88,
185
+ "end": 206.34,
186
+ "text": "Hoy conservo la guitarra, su canoa y la atarraya\n"
187
+ },
188
+ {
189
+ "start": 206.68,
190
+ "end": 211.07,
191
+ "text": "Le doy un beso a mi negra y me voy de madrugada\n"
192
+ },
193
+ {
194
+ "start": 211.44,
195
+ "end": 215.89,
196
+ "text": "Y canto yo las canciones, las que el viejo me enseñaba\n"
197
+ },
198
+ {
199
+ "start": 216.29,
200
+ "end": 220.42,
201
+ "text": "Hoy entono las canciones, las cumbias que él me enseñaba\n\n"
202
+ },
203
+ {
204
+ "start": 220.42,
205
+ "end": 223.3,
206
+ "text": "¿Y qué cantaba mi abuelo?\n"
207
+ },
208
+ {
209
+ "start": 223.48,
210
+ "end": 225.4,
211
+ "text": "De noche con su guitarra\n"
212
+ },
213
+ {
214
+ "start": 225.46,
215
+ "end": 228.02,
216
+ "text": "¿Qué cantaba mi abuelo?\n"
217
+ },
218
+ {
219
+ "start": 228.27,
220
+ "end": 230.17,
221
+ "text": "Canciones que hoy ya no cantan\n"
222
+ },
223
+ {
224
+ "start": 230.23,
225
+ "end": 233.44,
226
+ "text": "¿Qué cantaba mi abuelo?\n"
227
+ },
228
+ {
229
+ "start": 233.08,
230
+ "end": 234.95,
231
+ "text": "Al irse de madrugada\n"
232
+ },
233
+ {
234
+ "start": 235.08,
235
+ "end": 237.64,
236
+ "text": "¿Qué cantaba mi abuelo?\n"
237
+ },
238
+ {
239
+ "start": 237.86,
240
+ "end": 239.95,
241
+ "text": "La cumbia que hoy ya no cantan\n\n"
242
+ },
243
+ {
244
+ "start": 241.47,
245
+ "end": 243.16,
246
+ "text": "¡Cumbia!\n"
247
+ },
248
+ {
249
+ "start": 243.91,
250
+ "end": 248.61,
251
+ "text": "¡Con Internacional Nando Malo y su Sonora!\n"
252
+ },
253
+ {
254
+ "start": 249.0,
255
+ "end": 250.23,
256
+ "text": "¡Sí, sí, sí, sí!\n"
257
+ }
258
+ ]
259
+ }
alignment/Explosive_Ear_Candy_-_Like_The_Sun.json ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 0.02,
5
+ "end": 4.24,
6
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
7
+ },
8
+ {
9
+ "start": 4.33,
10
+ "end": 7.51,
11
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n"
12
+ },
13
+ {
14
+ "start": 7.51,
15
+ "end": 11.36,
16
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
17
+ },
18
+ {
19
+ "start": 11.89,
20
+ "end": 14.97,
21
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n\n"
22
+ },
23
+ {
24
+ "start": 15.72,
25
+ "end": 16.89,
26
+ "text": "I see your face\n"
27
+ },
28
+ {
29
+ "start": 16.94,
30
+ "end": 18.63,
31
+ "text": "Everywhere that I go\n"
32
+ },
33
+ {
34
+ "start": 18.73,
35
+ "end": 20.55,
36
+ "text": "On the clouds in the sky\n"
37
+ },
38
+ {
39
+ "start": 20.64,
40
+ "end": 23.03,
41
+ "text": "On the faces of strangers\n\n"
42
+ },
43
+ {
44
+ "start": 23.03,
45
+ "end": 24.26,
46
+ "text": "The birds sing your name\n"
47
+ },
48
+ {
49
+ "start": 24.38,
50
+ "end": 26.11,
51
+ "text": "And the fish try to talk\n"
52
+ },
53
+ {
54
+ "start": 26.2,
55
+ "end": 28.01,
56
+ "text": "'Cause without you the world\n"
57
+ },
58
+ {
59
+ "start": 28.09,
60
+ "end": 30.28,
61
+ "text": "Would be too dark to matter\n\n"
62
+ },
63
+ {
64
+ "start": 30.49,
65
+ "end": 31.94,
66
+ "text": "You're like the sun\n"
67
+ },
68
+ {
69
+ "start": 32.35,
70
+ "end": 33.74,
71
+ "text": "You're so far away\n"
72
+ },
73
+ {
74
+ "start": 33.74,
75
+ "end": 35.6,
76
+ "text": "But your light shines on\n"
77
+ },
78
+ {
79
+ "start": 36.13,
80
+ "end": 37.54,
81
+ "text": "And brightens each day\n"
82
+ },
83
+ {
84
+ "start": 37.54,
85
+ "end": 39.52,
86
+ "text": "When you're not around\n"
87
+ },
88
+ {
89
+ "start": 39.82,
90
+ "end": 43.01,
91
+ "text": "You make it worthwhile to expect you\n\n"
92
+ },
93
+ {
94
+ "start": 43.27,
95
+ "end": 45.07,
96
+ "text": "You're like the sun\n"
97
+ },
98
+ {
99
+ "start": 45.44,
100
+ "end": 46.72,
101
+ "text": "You turn on a switch\n"
102
+ },
103
+ {
104
+ "start": 46.84,
105
+ "end": 48.83,
106
+ "text": "And the gloom is gone\n"
107
+ },
108
+ {
109
+ "start": 49.25,
110
+ "end": 50.59,
111
+ "text": "You gave me my life\n"
112
+ },
113
+ {
114
+ "start": 50.74,
115
+ "end": 52.77,
116
+ "text": "And you carry on\n"
117
+ },
118
+ {
119
+ "start": 53.01,
120
+ "end": 56.23,
121
+ "text": "Without ever wanting a thank you\n"
122
+ },
123
+ {
124
+ "start": 57.38,
125
+ "end": 59.57,
126
+ "text": "You're like the sun\n\n"
127
+ },
128
+ {
129
+ "start": 58.12,
130
+ "end": 62.07,
131
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
132
+ },
133
+ {
134
+ "start": 62.4,
135
+ "end": 65.56,
136
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n"
137
+ },
138
+ {
139
+ "start": 65.6,
140
+ "end": 69.62,
141
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
142
+ },
143
+ {
144
+ "start": 70.02,
145
+ "end": 73.16,
146
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n\n"
147
+ },
148
+ {
149
+ "start": 73.7,
150
+ "end": 75.23,
151
+ "text": "Everyone loves you\n"
152
+ },
153
+ {
154
+ "start": 75.23,
155
+ "end": 76.74,
156
+ "text": "And wants you around\n"
157
+ },
158
+ {
159
+ "start": 76.83,
160
+ "end": 78.61,
161
+ "text": "But it's me most of all\n"
162
+ },
163
+ {
164
+ "start": 78.7,
165
+ "end": 81.13,
166
+ "text": "For my own selfish reasons\n\n"
167
+ },
168
+ {
169
+ "start": 81.19,
170
+ "end": 82.51,
171
+ "text": "You paint my sky blue\n"
172
+ },
173
+ {
174
+ "start": 82.51,
175
+ "end": 84.26,
176
+ "text": "And you spin my earth 'round\n"
177
+ },
178
+ {
179
+ "start": 84.34,
180
+ "end": 86.11,
181
+ "text": "So don't leave me alone\n"
182
+ },
183
+ {
184
+ "start": 86.27,
185
+ "end": 88.57,
186
+ "text": "'Cause I can't stand to miss you\n\n"
187
+ },
188
+ {
189
+ "start": 88.66,
190
+ "end": 90.07,
191
+ "text": "You're like the sun\n"
192
+ },
193
+ {
194
+ "start": 90.49,
195
+ "end": 91.9,
196
+ "text": "You're so far away\n"
197
+ },
198
+ {
199
+ "start": 91.9,
200
+ "end": 93.83,
201
+ "text": "But your light shines on\n"
202
+ },
203
+ {
204
+ "start": 94.26,
205
+ "end": 95.67,
206
+ "text": "And brightens each day\n"
207
+ },
208
+ {
209
+ "start": 95.67,
210
+ "end": 97.63,
211
+ "text": "When you're not around\n"
212
+ },
213
+ {
214
+ "start": 98.02,
215
+ "end": 101.21,
216
+ "text": "You make it worthwhile to expect you\n\n"
217
+ },
218
+ {
219
+ "start": 101.43,
220
+ "end": 103.33,
221
+ "text": "You're like the sun\n"
222
+ },
223
+ {
224
+ "start": 103.6,
225
+ "end": 105.03,
226
+ "text": "You turn on a switch\n"
227
+ },
228
+ {
229
+ "start": 105.03,
230
+ "end": 106.9,
231
+ "text": "And the gloom is gone\n"
232
+ },
233
+ {
234
+ "start": 107.33,
235
+ "end": 108.76,
236
+ "text": "You gave me my life\n"
237
+ },
238
+ {
239
+ "start": 108.76,
240
+ "end": 110.68,
241
+ "text": "And you carry on\n"
242
+ },
243
+ {
244
+ "start": 111.13,
245
+ "end": 114.41,
246
+ "text": "Without ever wanting a thank you\n"
247
+ },
248
+ {
249
+ "start": 115.47,
250
+ "end": 117.41,
251
+ "text": "You're like the sun\n\n"
252
+ },
253
+ {
254
+ "start": 116.24,
255
+ "end": 120.18,
256
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
257
+ },
258
+ {
259
+ "start": 120.64,
260
+ "end": 123.76,
261
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n"
262
+ },
263
+ {
264
+ "start": 123.84,
265
+ "end": 127.69,
266
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
267
+ },
268
+ {
269
+ "start": 128.13,
270
+ "end": 131.46,
271
+ "text": "Doo-doo-doo, doo-doo-doo, doo-doo-doo-doo\n\n"
272
+ },
273
+ {
274
+ "start": 131.46,
275
+ "end": 133.35,
276
+ "text": "You're like the sun\n"
277
+ },
278
+ {
279
+ "start": 133.6,
280
+ "end": 134.96,
281
+ "text": "You're so far away\n"
282
+ },
283
+ {
284
+ "start": 134.96,
285
+ "end": 136.86,
286
+ "text": "But your light shines on\n"
287
+ },
288
+ {
289
+ "start": 137.36,
290
+ "end": 138.78,
291
+ "text": "And brighten my days\n"
292
+ },
293
+ {
294
+ "start": 138.78,
295
+ "end": 140.69,
296
+ "text": "When you're not around\n"
297
+ },
298
+ {
299
+ "start": 141.13,
300
+ "end": 146.44,
301
+ "text": "You make it worthwhile to expect you (ooh-ooh-ooh-ooh-ooh)\n\n"
302
+ },
303
+ {
304
+ "start": 146.44,
305
+ "end": 148.21,
306
+ "text": "You're like the sun\n"
307
+ },
308
+ {
309
+ "start": 148.61,
310
+ "end": 149.99,
311
+ "text": "You turn on a switch\n"
312
+ },
313
+ {
314
+ "start": 149.99,
315
+ "end": 152.06,
316
+ "text": "And the gloom is gone\n"
317
+ },
318
+ {
319
+ "start": 152.36,
320
+ "end": 153.78,
321
+ "text": "You gave me my life\n"
322
+ },
323
+ {
324
+ "start": 153.78,
325
+ "end": 155.68,
326
+ "text": "And you carry on\n"
327
+ },
328
+ {
329
+ "start": 156.14,
330
+ "end": 160.5,
331
+ "text": "Without ever wanting a thank you (ooh-ooh-ooh)\n"
332
+ },
333
+ {
334
+ "start": 160.52,
335
+ "end": 162.51,
336
+ "text": "You're like the sun\n"
337
+ },
338
+ {
339
+ "start": 164.99,
340
+ "end": 166.4,
341
+ "text": "(Ooh-ooh-ooh)\n\n"
342
+ },
343
+ {
344
+ "start": 168.76,
345
+ "end": 172.51,
346
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
347
+ },
348
+ {
349
+ "start": 172.51,
350
+ "end": 176.26,
351
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
352
+ },
353
+ {
354
+ "start": 176.26,
355
+ "end": 180.02,
356
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
357
+ },
358
+ {
359
+ "start": 180.02,
360
+ "end": 184.05,
361
+ "text": "Doo-doo-doo, doo, doo-doo-doo, doo, doo\n"
362
+ }
363
+ ]
364
+ }
alignment/Fantasma_-_Los_Rombos.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 17.63,
5
+ "end": 21.42,
6
+ "text": "Soy un fantasma que\n"
7
+ },
8
+ {
9
+ "start": 21.95,
10
+ "end": 25.32,
11
+ "text": "Se asusta de sí mismo\n"
12
+ },
13
+ {
14
+ "start": 26.41,
15
+ "end": 30.44,
16
+ "text": "Un hueco dentro de otro hueco\n"
17
+ },
18
+ {
19
+ "start": 30.76,
20
+ "end": 34.06,
21
+ "text": "Que solo el aire atraviesa\n\n"
22
+ },
23
+ {
24
+ "start": 35.12,
25
+ "end": 39.26,
26
+ "text": "La tristeza es muy extraña\n"
27
+ },
28
+ {
29
+ "start": 39.38,
30
+ "end": 43.52,
31
+ "text": "Se alimenta de la belleza\n"
32
+ },
33
+ {
34
+ "start": 43.91,
35
+ "end": 47.17,
36
+ "text": "Ah, ah, ah\n"
37
+ },
38
+ {
39
+ "start": 48.25,
40
+ "end": 51.47,
41
+ "text": "Ah, ah, ah\n\n"
42
+ },
43
+ {
44
+ "start": 52.54,
45
+ "end": 56.51,
46
+ "text": "Soy el sombrero de un mago\n"
47
+ },
48
+ {
49
+ "start": 56.94,
50
+ "end": 60.14,
51
+ "text": "Donde no hay un conejo\n"
52
+ },
53
+ {
54
+ "start": 61.34,
55
+ "end": 65.27,
56
+ "text": "Un beso que no deja huella\n"
57
+ },
58
+ {
59
+ "start": 65.7,
60
+ "end": 68.87,
61
+ "text": "Ni palpita en el recuerdo\n\n"
62
+ },
63
+ {
64
+ "start": 70.09,
65
+ "end": 74.23,
66
+ "text": "La tristeza es muy extraña\n"
67
+ },
68
+ {
69
+ "start": 74.3,
70
+ "end": 78.75,
71
+ "text": "Se alimenta de la belleza\n\n"
72
+ },
73
+ {
74
+ "start": 96.13,
75
+ "end": 102.44,
76
+ "text": "Uh-uh-uh-uh-uh-uh, uh-uh-uh-uh-uh-uh, uh-uh\n"
77
+ },
78
+ {
79
+ "start": 104.92,
80
+ "end": 111.49,
81
+ "text": "Uh-uh-uh-uh-uh-uh, uh-uh-uh-uh-uh, uh-uh-uh\n"
82
+ },
83
+ {
84
+ "start": 113.66,
85
+ "end": 119.87,
86
+ "text": "Uh-uh-uh-uh-uh-uh, uh-uh-uh-uh-uh, uh-uh-uh\n"
87
+ },
88
+ {
89
+ "start": 122.39,
90
+ "end": 128.76,
91
+ "text": "Uh-uh-uh-uh-uh-uh, uh-uh-uh-uh-uh, uh-uh-uh\n\n"
92
+ },
93
+ {
94
+ "start": 131.12,
95
+ "end": 135.3,
96
+ "text": "La tristeza es muy extraña\n"
97
+ },
98
+ {
99
+ "start": 135.44,
100
+ "end": 139.87,
101
+ "text": "Se alimenta de la belleza\n"
102
+ },
103
+ {
104
+ "start": 144.14,
105
+ "end": 147.85,
106
+ "text": "Uh, uh, uh\n"
107
+ },
108
+ {
109
+ "start": 150.58,
110
+ "end": 154.83,
111
+ "text": "Uh, uh, uh\n"
112
+ }
113
+ ]
114
+ }
alignment/Freifliegen_-_durch.dick.und.duenn.json ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 22.67,
5
+ "end": 24.73,
6
+ "text": "Ich will entfliehen\n"
7
+ },
8
+ {
9
+ "start": 25.55,
10
+ "end": 29.56,
11
+ "text": "Dem Käfig, der mich hält\n"
12
+ },
13
+ {
14
+ "start": 30.33,
15
+ "end": 33.38,
16
+ "text": "Lass dich allein zurück\n"
17
+ },
18
+ {
19
+ "start": 34.0,
20
+ "end": 37.44,
21
+ "text": "Folge dem, was mich ruft\n\n"
22
+ },
23
+ {
24
+ "start": 38.53,
25
+ "end": 41.46,
26
+ "text": "Nächte lang geredet\n"
27
+ },
28
+ {
29
+ "start": 41.77,
30
+ "end": 45.5,
31
+ "text": "Geweint, geschworen, versöhnt\n"
32
+ },
33
+ {
34
+ "start": 46.26,
35
+ "end": 49.39,
36
+ "text": "Gesteh doch endlich ein\n"
37
+ },
38
+ {
39
+ "start": 50.04,
40
+ "end": 53.12,
41
+ "text": "All das macht nicht frei\n\n"
42
+ },
43
+ {
44
+ "start": 53.81,
45
+ "end": 57.03,
46
+ "text": "Ich folge meinem Herzen\n"
47
+ },
48
+ {
49
+ "start": 57.75,
50
+ "end": 60.62,
51
+ "text": "Woher es auch ruft\n"
52
+ },
53
+ {
54
+ "start": 61.75,
55
+ "end": 65.26,
56
+ "text": "Und flieg mich frei von jedem Zwang\n"
57
+ },
58
+ {
59
+ "start": 65.55,
60
+ "end": 69.04,
61
+ "text": "Ein Käfig ist zu klein\n"
62
+ },
63
+ {
64
+ "start": 69.79,
65
+ "end": 72.6,
66
+ "text": "Für das, was ich leben will\n"
67
+ },
68
+ {
69
+ "start": 73.96,
70
+ "end": 77.19,
71
+ "text": "Leben will\n\n"
72
+ },
73
+ {
74
+ "start": 78.6,
75
+ "end": 81.65,
76
+ "text": "Ich würd' viel geben\n"
77
+ },
78
+ {
79
+ "start": 82.55,
80
+ "end": 85.4,
81
+ "text": "Könnt' ich dir Schmerz erspar'n\n"
82
+ },
83
+ {
84
+ "start": 85.99,
85
+ "end": 89.42,
86
+ "text": "Doch dies geb' ich nicht\n"
87
+ },
88
+ {
89
+ "start": 89.77,
90
+ "end": 93.31,
91
+ "text": "Meine Freiheit gehört mir\n\n"
92
+ },
93
+ {
94
+ "start": 126.85,
95
+ "end": 129.84,
96
+ "text": "Greif die Chance\n"
97
+ },
98
+ {
99
+ "start": 130.78,
100
+ "end": 133.31,
101
+ "text": "Fasse Mut\n"
102
+ },
103
+ {
104
+ "start": 133.81,
105
+ "end": 137.45,
106
+ "text": "Befreie dich auch\n"
107
+ },
108
+ {
109
+ "start": 137.75,
110
+ "end": 147.8,
111
+ "text": "Befreie dich von mir\n\n"
112
+ },
113
+ {
114
+ "start": 149.73,
115
+ "end": 153.11,
116
+ "text": "Ich folge meinem Herzen\n"
117
+ },
118
+ {
119
+ "start": 153.79,
120
+ "end": 156.7,
121
+ "text": "Woher es auch ruft\n"
122
+ },
123
+ {
124
+ "start": 157.8,
125
+ "end": 161.29,
126
+ "text": "Und flieg mich frei von jedem Zwang\n"
127
+ },
128
+ {
129
+ "start": 161.5,
130
+ "end": 165.07,
131
+ "text": "Ein Käfig ist zu klein\n"
132
+ },
133
+ {
134
+ "start": 165.77,
135
+ "end": 168.68,
136
+ "text": "Für das, was ich leben will\n"
137
+ },
138
+ {
139
+ "start": 169.99,
140
+ "end": 173.42,
141
+ "text": "Leben will\n\n"
142
+ },
143
+ {
144
+ "start": 174.33,
145
+ "end": 177.44,
146
+ "text": "Erfüllung deiner Träume\n"
147
+ },
148
+ {
149
+ "start": 178.57,
150
+ "end": 181.57,
151
+ "text": "Will ich dir wünschen\n"
152
+ },
153
+ {
154
+ "start": 181.85,
155
+ "end": 185.17,
156
+ "text": "Erbau dir eine neue Welt\n"
157
+ },
158
+ {
159
+ "start": 185.79,
160
+ "end": 189.95,
161
+ "text": "Einen Käfig, der sie hält\n"
162
+ }
163
+ ]
164
+ }
alignment/Fußabdrücke_-_Andreas_Jachmann.json ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 21.36,
5
+ "end": 23.24,
6
+ "text": "Der Himmel zeigt\n"
7
+ },
8
+ {
9
+ "start": 23.36,
10
+ "end": 27.66,
11
+ "text": "Statt der Engel lauter Wolken\n"
12
+ },
13
+ {
14
+ "start": 28.31,
15
+ "end": 32.23,
16
+ "text": "Einem Stern wolltest du folgen\n"
17
+ },
18
+ {
19
+ "start": 33.96,
20
+ "end": 37.98,
21
+ "text": "Doch der Weltraum schweigt\n\n"
22
+ },
23
+ {
24
+ "start": 40.26,
25
+ "end": 42.43,
26
+ "text": "Es ist alles still\n"
27
+ },
28
+ {
29
+ "start": 42.65,
30
+ "end": 46.63,
31
+ "text": "Und du betest, um dem Rauschen\n"
32
+ },
33
+ {
34
+ "start": 47.47,
35
+ "end": 51.5,
36
+ "text": "Eine Botschaft abzulauschen\n"
37
+ },
38
+ {
39
+ "start": 53.15,
40
+ "end": 56.59,
41
+ "text": "Die nicht kommen will\n\n"
42
+ },
43
+ {
44
+ "start": 78.97,
45
+ "end": 80.83,
46
+ "text": "Du liest und fragst\n"
47
+ },
48
+ {
49
+ "start": 81.05,
50
+ "end": 85.02,
51
+ "text": "Warum durften jene wissen\n"
52
+ },
53
+ {
54
+ "start": 85.86,
55
+ "end": 90.08,
56
+ "text": "Wo wir heute glauben müssen\n"
57
+ },
58
+ {
59
+ "start": 91.84,
60
+ "end": 95.1,
61
+ "text": "Und du beklagst\n\n"
62
+ },
63
+ {
64
+ "start": 98.21,
65
+ "end": 99.97,
66
+ "text": "Es ist nicht recht\n"
67
+ },
68
+ {
69
+ "start": 100.25,
70
+ "end": 104.23,
71
+ "text": "Jene durften Wunder schauen\n"
72
+ },
73
+ {
74
+ "start": 105.09,
75
+ "end": 108.94,
76
+ "text": "Und wir müssen blind vertrauen\n"
77
+ },
78
+ {
79
+ "start": 110.76,
80
+ "end": 113.89,
81
+ "text": "Doch das kannst du schlecht\n\n"
82
+ },
83
+ {
84
+ "start": 117.66,
85
+ "end": 122.03,
86
+ "text": "Wenn Gottes Stimme unhörbar ist\n"
87
+ },
88
+ {
89
+ "start": 122.8,
90
+ "end": 126.16,
91
+ "text": "Dann weil du nicht leis' genug bist\n"
92
+ },
93
+ {
94
+ "start": 126.97,
95
+ "end": 131.36,
96
+ "text": "Wenn jedes Wunder erklärbar ist\n"
97
+ },
98
+ {
99
+ "start": 132.35,
100
+ "end": 135.78,
101
+ "text": "Dann weil du schon viel zu klug bist\n"
102
+ },
103
+ {
104
+ "start": 136.88,
105
+ "end": 141.0,
106
+ "text": "Wenn Gottes Stimme unhörbar ist\n"
107
+ },
108
+ {
109
+ "start": 141.98,
110
+ "end": 145.42,
111
+ "text": "Dann weil du nicht leis' genug bist\n"
112
+ },
113
+ {
114
+ "start": 146.5,
115
+ "end": 150.47,
116
+ "text": "Wenn jedes Wunder erklärbar ist\n"
117
+ },
118
+ {
119
+ "start": 151.58,
120
+ "end": 155.11,
121
+ "text": "Dann weil du schon viel zu klug bist\n\n"
122
+ },
123
+ {
124
+ "start": 196.29,
125
+ "end": 198.55,
126
+ "text": "Übers dünne Eis\n"
127
+ },
128
+ {
129
+ "start": 198.55,
130
+ "end": 202.61,
131
+ "text": "Folgst du dunklen Fußabdrücken\n"
132
+ },
133
+ {
134
+ "start": 203.45,
135
+ "end": 207.63,
136
+ "text": "Kannst den vor dir nicht erblicken\n"
137
+ },
138
+ {
139
+ "start": 209.15,
140
+ "end": 212.29,
141
+ "text": "Da ist kein Beweis\n\n"
142
+ },
143
+ {
144
+ "start": 215.49,
145
+ "end": 217.52,
146
+ "text": "Da ist nichts zu sehn\n"
147
+ },
148
+ {
149
+ "start": 217.88,
150
+ "end": 221.97,
151
+ "text": "Nur ein fast unhörbar leises\n"
152
+ },
153
+ {
154
+ "start": 222.56,
155
+ "end": 226.98,
156
+ "text": "Sprödes Knistern dünnen Eises\n"
157
+ },
158
+ {
159
+ "start": 228.37,
160
+ "end": 232.68,
161
+ "text": "Doch du bleibst nicht stehn\n"
162
+ }
163
+ ]
164
+ }
alignment/Guayeteo_-_JhoyKing.json ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 6.69,
5
+ "end": 9.33,
6
+ "text": "Guayeteo, ah\n"
7
+ },
8
+ {
9
+ "start": 10.17,
10
+ "end": 15.24,
11
+ "text": "Hace tiempo no sale a perrear (ye, ye, ye)\n"
12
+ },
13
+ {
14
+ "start": 15.24,
15
+ "end": 18.74,
16
+ "text": "To' el mundo puesto pa guayetear, ah\n\n"
17
+ },
18
+ {
19
+ "start": 19.21,
20
+ "end": 23.43,
21
+ "text": "DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
22
+ },
23
+ {
24
+ "start": 23.73,
25
+ "end": 25.88,
26
+ "text": "Las gatas solo piden perreo\n"
27
+ },
28
+ {
29
+ "start": 26.12,
30
+ "end": 29.34,
31
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n"
32
+ },
33
+ {
34
+ "start": 29.41,
35
+ "end": 33.47,
36
+ "text": "DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
37
+ },
38
+ {
39
+ "start": 33.8,
40
+ "end": 36.0,
41
+ "text": "Las gatas solo piden perreo\n"
42
+ },
43
+ {
44
+ "start": 36.22,
45
+ "end": 40.11,
46
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n\n"
47
+ },
48
+ {
49
+ "start": 39.4,
50
+ "end": 43.16,
51
+ "text": "Llegaron lo' del equipaje y se soltaron los perros salvaje', oh\n"
52
+ },
53
+ {
54
+ "start": 43.34,
55
+ "end": 45.47,
56
+ "text": "Pa' que la' baby' se quiten to' el traje\n"
57
+ },
58
+ {
59
+ "start": 45.88,
60
+ "end": 48.05,
61
+ "text": "Se nota que tienen to' el tigueraje\n"
62
+ },
63
+ {
64
+ "start": 48.42,
65
+ "end": 50.58,
66
+ "text": "Que se quiten el panty, cero visaje\n"
67
+ },
68
+ {
69
+ "start": 50.3,
70
+ "end": 52.97,
71
+ "text": "En ambiente y que la' gata' se pongan caliente'\n"
72
+ },
73
+ {
74
+ "start": 53.13,
75
+ "end": 55.46,
76
+ "text": "Pastilla' de to' colore' y póngase indecente\n"
77
+ },
78
+ {
79
+ "start": 55.67,
80
+ "end": 57.86,
81
+ "text": "No le gustan serio' ni con porte 'e inocente'\n"
82
+ },
83
+ {
84
+ "start": 57.86,
85
+ "end": 60.55,
86
+ "text": "Le gustan los tipo' malos y con cara de maleante'\n"
87
+ },
88
+ {
89
+ "start": 60.38,
90
+ "end": 63.01,
91
+ "text": "Más duro, más phillie, más sexo, bien duro\n"
92
+ },
93
+ {
94
+ "start": 63.36,
95
+ "end": 65.44,
96
+ "text": "Esto va como un rifle sin seguro\n"
97
+ },
98
+ {
99
+ "start": 66.06,
100
+ "end": 68.07,
101
+ "text": "Más duro, más phillie, bien duro\n"
102
+ },
103
+ {
104
+ "start": 68.57,
105
+ "end": 70.62,
106
+ "text": "La madre pa'l que no mueva el culo\n\n"
107
+ },
108
+ {
109
+ "start": 69.77,
110
+ "end": 73.9,
111
+ "text": "DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
112
+ },
113
+ {
114
+ "start": 74.29,
115
+ "end": 76.42,
116
+ "text": "Las gatas solo piden perreo\n"
117
+ },
118
+ {
119
+ "start": 76.66,
120
+ "end": 79.98,
121
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n"
122
+ },
123
+ {
124
+ "start": 79.98,
125
+ "end": 84.04,
126
+ "text": "DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
127
+ },
128
+ {
129
+ "start": 84.36,
130
+ "end": 86.53,
131
+ "text": "Las gatas solo piden perreo\n"
132
+ },
133
+ {
134
+ "start": 86.77,
135
+ "end": 90.6,
136
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n\n"
137
+ },
138
+ {
139
+ "start": 90.37,
140
+ "end": 91.88,
141
+ "text": "(Oye) cuidao que se te ve\n"
142
+ },
143
+ {
144
+ "start": 92.24,
145
+ "end": 93.17,
146
+ "text": "Cuando te guayé\n"
147
+ },
148
+ {
149
+ "start": 93.52,
150
+ "end": 95.62,
151
+ "text": "Mientra' que lo hacemo' pegaíto a la pared\n"
152
+ },
153
+ {
154
+ "start": 95.74,
155
+ "end": 98.26,
156
+ "text": "Te encanta, cuando no' ponemo' caliente'\n"
157
+ },
158
+ {
159
+ "start": 98.26,
160
+ "end": 100.64,
161
+ "text": "Se siente, que el perreo está muy salvaje\n"
162
+ },
163
+ {
164
+ "start": 100.64,
165
+ "end": 103.51,
166
+ "text": "Las gatas lo guayan deli, maki, combo Kawasaki\n"
167
+ },
168
+ {
169
+ "start": 103.65,
170
+ "end": 106.01,
171
+ "text": "Como un plato fuerte servido a lo teriyaki\n"
172
+ },
173
+ {
174
+ "start": 106.13,
175
+ "end": 108.6,
176
+ "text": "Con este perreo le subimo' to' el ranking\n"
177
+ },
178
+ {
179
+ "start": 108.69,
180
+ "end": 111.16,
181
+ "text": "Como el oso rompiendo en lo' tiempo'e Taki Taki\n"
182
+ },
183
+ {
184
+ "start": 111.16,
185
+ "end": 115.6,
186
+ "text": "(Je-je) oh-oh-oh (guayeteo pa'l barrio)\n"
187
+ },
188
+ {
189
+ "start": 115.93,
190
+ "end": 119.94,
191
+ "text": "Ye-eh-eh (je-je-je, je-je-je)\n\n"
192
+ },
193
+ {
194
+ "start": 119.94,
195
+ "end": 124.47,
196
+ "text": "(El flow) DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
197
+ },
198
+ {
199
+ "start": 124.7,
200
+ "end": 126.92,
201
+ "text": "Las gatas solo piden perreo\n"
202
+ },
203
+ {
204
+ "start": 127.17,
205
+ "end": 130.38,
206
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n"
207
+ },
208
+ {
209
+ "start": 130.49,
210
+ "end": 134.58,
211
+ "text": "DJ ponga el perreo, to' el mundo puesto pa'l guayeteo\n"
212
+ },
213
+ {
214
+ "start": 134.82,
215
+ "end": 137.02,
216
+ "text": "Las gatas solo piden perreo\n"
217
+ },
218
+ {
219
+ "start": 137.28,
220
+ "end": 141.17,
221
+ "text": "El que no baile, le sacamo' el de'o, eh-oh\n\n"
222
+ },
223
+ {
224
+ "start": 141.74,
225
+ "end": 143.91,
226
+ "text": "Sencillo, JhoyKing El Duro\n"
227
+ },
228
+ {
229
+ "start": 144.91,
230
+ "end": 146.86,
231
+ "text": "Santos, DC\n"
232
+ },
233
+ {
234
+ "start": 147.54,
235
+ "end": 149.82,
236
+ "text": "Tele, los diablos con los diablos\n"
237
+ },
238
+ {
239
+ "start": 150.16,
240
+ "end": 151.89,
241
+ "text": "Okay, se jodió esta pendeja\n"
242
+ }
243
+ ]
244
+ }
alignment/HILA_-_Give_Me_the_Same.json ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 18.62,
5
+ "end": 19.87,
6
+ "text": "Lay awake at night\n"
7
+ },
8
+ {
9
+ "start": 20.84,
10
+ "end": 22.13,
11
+ "text": "Wondering how could I\n"
12
+ },
13
+ {
14
+ "start": 23.02,
15
+ "end": 24.42,
16
+ "text": "Let it get this way\n"
17
+ },
18
+ {
19
+ "start": 27.46,
20
+ "end": 28.66,
21
+ "text": "Through all the pain\n"
22
+ },
23
+ {
24
+ "start": 29.48,
25
+ "end": 30.88,
26
+ "text": "I took all the blame\n"
27
+ },
28
+ {
29
+ "start": 31.94,
30
+ "end": 33.42,
31
+ "text": "While you cursed my last name\n"
32
+ },
33
+ {
34
+ "start": 36.19,
35
+ "end": 37.86,
36
+ "text": "I thought we could get better\n"
37
+ },
38
+ {
39
+ "start": 38.45,
40
+ "end": 40.1,
41
+ "text": "Stayed committed like a soldier\n"
42
+ },
43
+ {
44
+ "start": 40.97,
45
+ "end": 42.31,
46
+ "text": "Believed we're okay\n"
47
+ },
48
+ {
49
+ "start": 44.42,
50
+ "end": 49.46,
51
+ "text": "Now I know that you don't care\n"
52
+ },
53
+ {
54
+ "start": 50.48,
55
+ "end": 52.56,
56
+ "text": "At all\n\n"
57
+ },
58
+ {
59
+ "start": 53.57,
60
+ "end": 54.83,
61
+ "text": "Time wasted\n"
62
+ },
63
+ {
64
+ "start": 55.24,
65
+ "end": 60.98,
66
+ "text": "Gave all of my soul and my heart to someone that would never\n"
67
+ },
68
+ {
69
+ "start": 61.11,
70
+ "end": 62.14,
71
+ "text": "(Give me the same)\n"
72
+ },
73
+ {
74
+ "start": 62.52,
75
+ "end": 69.6,
76
+ "text": "I was a fool to believe that you would finally be the one to\n"
77
+ },
78
+ {
79
+ "start": 69.95,
80
+ "end": 71.12,
81
+ "text": "(Give me the same)\n"
82
+ },
83
+ {
84
+ "start": 71.29,
85
+ "end": 74.63,
86
+ "text": "Heartbroken now\n"
87
+ },
88
+ {
89
+ "start": 75.79,
90
+ "end": 79.04,
91
+ "text": "How you let me down\n"
92
+ },
93
+ {
94
+ "start": 79.64,
95
+ "end": 85.19,
96
+ "text": "But somehow, deep down, I still do\n"
97
+ },
98
+ {
99
+ "start": 86.0,
100
+ "end": 88.37,
101
+ "text": "Love you\n\n"
102
+ },
103
+ {
104
+ "start": 91.89,
105
+ "end": 93.36,
106
+ "text": "Now you're out all night\n"
107
+ },
108
+ {
109
+ "start": 94.46,
110
+ "end": 95.7,
111
+ "text": "Telling your lies\n"
112
+ },
113
+ {
114
+ "start": 96.29,
115
+ "end": 97.8,
116
+ "text": "About the way I hurt you\n"
117
+ },
118
+ {
119
+ "start": 98.42,
120
+ "end": 99.82,
121
+ "text": "They couldn't see the way\n"
122
+ },
123
+ {
124
+ "start": 100.69,
125
+ "end": 102.51,
126
+ "text": "You made me feel ashamed\n"
127
+ },
128
+ {
129
+ "start": 103.06,
130
+ "end": 105.16,
131
+ "text": "For choosing to love you\n"
132
+ },
133
+ {
134
+ "start": 107.44,
135
+ "end": 108.98,
136
+ "text": "I began to see clearer\n"
137
+ },
138
+ {
139
+ "start": 109.87,
140
+ "end": 111.15,
141
+ "text": "That you were just a liar\n"
142
+ },
143
+ {
144
+ "start": 112.12,
145
+ "end": 113.78,
146
+ "text": "Stuck in your ways\n"
147
+ },
148
+ {
149
+ "start": 115.33,
150
+ "end": 120.37,
151
+ "text": "So now I choose to walk away\n"
152
+ },
153
+ {
154
+ "start": 121.74,
155
+ "end": 124.13,
156
+ "text": "Forever\n\n"
157
+ },
158
+ {
159
+ "start": 124.66,
160
+ "end": 125.94,
161
+ "text": "Time wasted\n"
162
+ },
163
+ {
164
+ "start": 126.34,
165
+ "end": 131.98,
166
+ "text": "Gave all of my soul and my heart to someone that would never\n"
167
+ },
168
+ {
169
+ "start": 132.21,
170
+ "end": 133.38,
171
+ "text": "(Give me the same)\n"
172
+ },
173
+ {
174
+ "start": 133.55,
175
+ "end": 140.74,
176
+ "text": "I was a fool to believe that you would finally be the one to\n"
177
+ },
178
+ {
179
+ "start": 141.17,
180
+ "end": 142.27,
181
+ "text": "Give me the same\n"
182
+ },
183
+ {
184
+ "start": 142.54,
185
+ "end": 145.87,
186
+ "text": "Heartbroken now\n"
187
+ },
188
+ {
189
+ "start": 146.89,
190
+ "end": 150.14,
191
+ "text": "How you let me down\n"
192
+ },
193
+ {
194
+ "start": 150.83,
195
+ "end": 156.1,
196
+ "text": "But somehow, deep down, I still do\n"
197
+ },
198
+ {
199
+ "start": 157.13,
200
+ "end": 159.41,
201
+ "text": "Love you\n\n"
202
+ },
203
+ {
204
+ "start": 160.59,
205
+ "end": 166.74,
206
+ "text": "How could you just throw it all away, babe\n"
207
+ },
208
+ {
209
+ "start": 165.26,
210
+ "end": 168.96,
211
+ "text": "(How could you throw it all away)\n"
212
+ },
213
+ {
214
+ "start": 169.23,
215
+ "end": 173.75,
216
+ "text": "I stayed with you through all the lies and pain, oh\n"
217
+ },
218
+ {
219
+ "start": 173.94,
220
+ "end": 177.48,
221
+ "text": "(Through all the lies and pain, oh)\n"
222
+ },
223
+ {
224
+ "start": 177.94,
225
+ "end": 182.48,
226
+ "text": "Tears roll down my eyes (down my eyes)\n"
227
+ },
228
+ {
229
+ "start": 182.48,
230
+ "end": 184.72,
231
+ "text": "As I now realize\n"
232
+ },
233
+ {
234
+ "start": 186.58,
235
+ "end": 191.98,
236
+ "text": "Your love was never truly mine\n"
237
+ },
238
+ {
239
+ "start": 192.65,
240
+ "end": 195.81,
241
+ "text": "At all\n\n"
242
+ },
243
+ {
244
+ "start": 195.81,
245
+ "end": 197.28,
246
+ "text": "Time wasted\n"
247
+ },
248
+ {
249
+ "start": 197.49,
250
+ "end": 203.25,
251
+ "text": "Gave all of my soul and my heart to someone that would never\n"
252
+ },
253
+ {
254
+ "start": 203.34,
255
+ "end": 204.74,
256
+ "text": "(Give me the same)\n"
257
+ },
258
+ {
259
+ "start": 204.74,
260
+ "end": 211.93,
261
+ "text": "I was a fool to believe that you would finally be the one to\n"
262
+ },
263
+ {
264
+ "start": 212.21,
265
+ "end": 213.42,
266
+ "text": "(Give me the same)\n"
267
+ },
268
+ {
269
+ "start": 213.51,
270
+ "end": 218.46,
271
+ "text": "Heartbroken now (heartbroken now)\n"
272
+ },
273
+ {
274
+ "start": 218.02,
275
+ "end": 221.56,
276
+ "text": "How you let me down (oh)\n"
277
+ },
278
+ {
279
+ "start": 221.93,
280
+ "end": 227.84,
281
+ "text": "But somehow, deep down, I still do\n"
282
+ },
283
+ {
284
+ "start": 228.3,
285
+ "end": 230.55,
286
+ "text": "Love you\n"
287
+ }
288
+ ]
289
+ }
alignment/Háblame_-_(Talk_to_me)_-_Brunela_Crochenci.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 48.78,
5
+ "end": 52.57,
6
+ "text": "Sigue aún mis pasos, es como una sombra\n"
7
+ },
8
+ {
9
+ "start": 52.73,
10
+ "end": 56.32,
11
+ "text": "Y vuelve a mí\n"
12
+ },
13
+ {
14
+ "start": 57.67,
15
+ "end": 61.62,
16
+ "text": "Y esos recuerdos, solo quise borrarlos\n"
17
+ },
18
+ {
19
+ "start": 61.62,
20
+ "end": 65.01,
21
+ "text": "Y vuelven a mí\n\n"
22
+ },
23
+ {
24
+ "start": 66.55,
25
+ "end": 70.26,
26
+ "text": "¿Cómo encontrar una vía a París\n"
27
+ },
28
+ {
29
+ "start": 71.36,
30
+ "end": 74.7,
31
+ "text": "Que me lleve hacia ti?\n"
32
+ },
33
+ {
34
+ "start": 75.48,
35
+ "end": 79.13,
36
+ "text": "¿Cómo olvidar nuestra juventud\n"
37
+ },
38
+ {
39
+ "start": 79.88,
40
+ "end": 82.32,
41
+ "text": "Y aquella vida?\n\n"
42
+ },
43
+ {
44
+ "start": 104.36,
45
+ "end": 108.16,
46
+ "text": "Algo más que amigos, nos asustó el destino\n"
47
+ },
48
+ {
49
+ "start": 110.22,
50
+ "end": 112.2,
51
+ "text": "Cobardes fuimos\n"
52
+ },
53
+ {
54
+ "start": 113.03,
55
+ "end": 117.66,
56
+ "text": "Recuerdo su sonrisa, mi alma se alborota\n"
57
+ },
58
+ {
59
+ "start": 119.0,
60
+ "end": 120.96,
61
+ "text": "Necesito ya\n\n"
62
+ },
63
+ {
64
+ "start": 122.46,
65
+ "end": 125.71,
66
+ "text": "Encontrar una vía a París\n"
67
+ },
68
+ {
69
+ "start": 126.89,
70
+ "end": 130.45,
71
+ "text": "Que me lleve hacia ti\n"
72
+ },
73
+ {
74
+ "start": 131.01,
75
+ "end": 134.56,
76
+ "text": "¿Cómo olvidar nuestra juventud\n"
77
+ },
78
+ {
79
+ "start": 135.4,
80
+ "end": 139.52,
81
+ "text": "Y aquella vida?\n\n"
82
+ },
83
+ {
84
+ "start": 142.0,
85
+ "end": 144.91,
86
+ "text": "Vuelvo, te veo\n"
87
+ },
88
+ {
89
+ "start": 146.11,
90
+ "end": 150.04,
91
+ "text": "Y pienso, háblame\n"
92
+ },
93
+ {
94
+ "start": 150.59,
95
+ "end": 154.03,
96
+ "text": "Vuelvo, me miras\n"
97
+ },
98
+ {
99
+ "start": 154.65,
100
+ "end": 158.63,
101
+ "text": "Y piensas, háblame\n\n"
102
+ },
103
+ {
104
+ "start": 194.07,
105
+ "end": 197.82,
106
+ "text": "Ya encontré una vía a París\n"
107
+ },
108
+ {
109
+ "start": 198.86,
110
+ "end": 202.32,
111
+ "text": "Que me lleve hacia ti\n"
112
+ },
113
+ {
114
+ "start": 202.98,
115
+ "end": 206.68,
116
+ "text": "¿Cómo olvidar nuestra juventud\n"
117
+ },
118
+ {
119
+ "start": 207.39,
120
+ "end": 211.42,
121
+ "text": "Y aquellos días?\n"
122
+ }
123
+ ]
124
+ }
alignment/Ich_kann_dich_nicht_vergessen_-_Wingenbach_Frank.json ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 18.54,
5
+ "end": 21.0,
6
+ "text": "Ich werd' nicht aufhören\n"
7
+ },
8
+ {
9
+ "start": 22.97,
10
+ "end": 24.52,
11
+ "text": "Dich zu lieben\n"
12
+ },
13
+ {
14
+ "start": 26.3,
15
+ "end": 30.9,
16
+ "text": "In meinem Kopf sind all deine Bilder\n"
17
+ },
18
+ {
19
+ "start": 34.99,
20
+ "end": 36.97,
21
+ "text": "Und die Erinnerung\n"
22
+ },
23
+ {
24
+ "start": 38.47,
25
+ "end": 41.5,
26
+ "text": "Heilt nicht meine Wunden\n"
27
+ },
28
+ {
29
+ "start": 42.44,
30
+ "end": 47.48,
31
+ "text": "Ich will dich sehen für 'n paar Stunden\n\n"
32
+ },
33
+ {
34
+ "start": 50.49,
35
+ "end": 53.02,
36
+ "text": "Ich kann dich nicht vergessen\n"
37
+ },
38
+ {
39
+ "start": 54.52,
40
+ "end": 56.5,
41
+ "text": "Es gelingt mir nicht\n"
42
+ },
43
+ {
44
+ "start": 58.46,
45
+ "end": 62.57,
46
+ "text": "Ich warte, bis das Eis zusammenbricht\n\n"
47
+ },
48
+ {
49
+ "start": 66.46,
50
+ "end": 68.9,
51
+ "text": "Ich halt' es nicht mehr aus\n"
52
+ },
53
+ {
54
+ "start": 70.51,
55
+ "end": 72.57,
56
+ "text": "Es tut so weh\n"
57
+ },
58
+ {
59
+ "start": 74.49,
60
+ "end": 76.63,
61
+ "text": "Der Schmerz wird stärker\n"
62
+ },
63
+ {
64
+ "start": 76.95,
65
+ "end": 78.73,
66
+ "text": "Wenn ich dich seh'\n\n"
67
+ },
68
+ {
69
+ "start": 98.5,
70
+ "end": 101.16,
71
+ "text": "Mit deinen blauen Augen\n"
72
+ },
73
+ {
74
+ "start": 102.47,
75
+ "end": 105.51,
76
+ "text": "Hast du mich verzaubert\n"
77
+ },
78
+ {
79
+ "start": 106.49,
80
+ "end": 108.81,
81
+ "text": "Du hast mein Herz\n"
82
+ },
83
+ {
84
+ "start": 110.41,
85
+ "end": 113.68,
86
+ "text": "Im Sturm erobert\n"
87
+ },
88
+ {
89
+ "start": 114.51,
90
+ "end": 117.13,
91
+ "text": "Du bist in meinem Herzen drin\n"
92
+ },
93
+ {
94
+ "start": 118.47,
95
+ "end": 121.25,
96
+ "text": "So ergibt mein Leben einen Sinn\n"
97
+ },
98
+ {
99
+ "start": 122.47,
100
+ "end": 125.77,
101
+ "text": "Dein Lächeln kann so schön sein\n"
102
+ },
103
+ {
104
+ "start": 126.24,
105
+ "end": 128.82,
106
+ "text": "Mein Traum brach ein\n\n"
107
+ },
108
+ {
109
+ "start": 130.46,
110
+ "end": 132.79,
111
+ "text": "Ich halt' es nicht mehr aus\n"
112
+ },
113
+ {
114
+ "start": 134.48,
115
+ "end": 136.53,
116
+ "text": "Es tut so weh\n"
117
+ },
118
+ {
119
+ "start": 138.47,
120
+ "end": 140.67,
121
+ "text": "Der Schmerz wird stärker\n"
122
+ },
123
+ {
124
+ "start": 141.0,
125
+ "end": 142.8,
126
+ "text": "Wenn ich dich seh'\n\n"
127
+ },
128
+ {
129
+ "start": 146.49,
130
+ "end": 148.98,
131
+ "text": "Ich kann dich nicht vergessen\n"
132
+ },
133
+ {
134
+ "start": 150.46,
135
+ "end": 152.51,
136
+ "text": "Es gelingt mir nicht\n"
137
+ },
138
+ {
139
+ "start": 154.46,
140
+ "end": 158.8,
141
+ "text": "Ich warte, bis das Eis zusammenbricht\n\n"
142
+ },
143
+ {
144
+ "start": 162.44,
145
+ "end": 164.78,
146
+ "text": "Ich halt' es nicht mehr aus\n"
147
+ },
148
+ {
149
+ "start": 166.48,
150
+ "end": 168.71,
151
+ "text": "Es tut so weh\n"
152
+ },
153
+ {
154
+ "start": 170.48,
155
+ "end": 172.52,
156
+ "text": "Der Schmerz wird stärker\n"
157
+ },
158
+ {
159
+ "start": 173.01,
160
+ "end": 174.85,
161
+ "text": "Wenn ich dich seh'\n\n"
162
+ },
163
+ {
164
+ "start": 194.51,
165
+ "end": 197.01,
166
+ "text": "Ich kann dich nicht vergessen\n"
167
+ },
168
+ {
169
+ "start": 198.47,
170
+ "end": 200.74,
171
+ "text": "Es gelingt mir nicht\n"
172
+ },
173
+ {
174
+ "start": 202.46,
175
+ "end": 206.73,
176
+ "text": "Ich warte, bis das Eis zusammenbricht\n\n"
177
+ },
178
+ {
179
+ "start": 210.44,
180
+ "end": 212.82,
181
+ "text": "Ich halt' es nicht mehr aus\n"
182
+ },
183
+ {
184
+ "start": 214.48,
185
+ "end": 216.78,
186
+ "text": "Es tut so weh\n"
187
+ },
188
+ {
189
+ "start": 218.44,
190
+ "end": 220.67,
191
+ "text": "Der Schmerz wird stärker\n"
192
+ },
193
+ {
194
+ "start": 221.01,
195
+ "end": 222.77,
196
+ "text": "Wenn ich dich seh'\n\n"
197
+ },
198
+ {
199
+ "start": 242.49,
200
+ "end": 245.01,
201
+ "text": "Ich kann dich nicht vergessen\n"
202
+ },
203
+ {
204
+ "start": 246.49,
205
+ "end": 248.79,
206
+ "text": "Es gelingt mir nicht\n"
207
+ },
208
+ {
209
+ "start": 250.46,
210
+ "end": 255.06,
211
+ "text": "Ich warte, bis das Eis zusammenbricht\n"
212
+ }
213
+ ]
214
+ }
alignment/Intentando_Destacar_-_Sundayers_.json ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 28.6,
5
+ "end": 30.42,
6
+ "text": "Mira, se van, corre, ¿dónde van?\n"
7
+ },
8
+ {
9
+ "start": 30.78,
10
+ "end": 33.21,
11
+ "text": "No pierdas ni un segundo que lo vas a alcanzar\n"
12
+ },
13
+ {
14
+ "start": 33.75,
15
+ "end": 36.3,
16
+ "text": "Y cuando llegues, si es que llegas, ya te has ido y has venido\n"
17
+ },
18
+ {
19
+ "start": 36.39,
20
+ "end": 38.21,
21
+ "text": "Párate a descansar\n\n"
22
+ },
23
+ {
24
+ "start": 38.61,
25
+ "end": 40.47,
26
+ "text": "Mira, se van, corre, ¿dónde van?\n"
27
+ },
28
+ {
29
+ "start": 40.78,
30
+ "end": 43.28,
31
+ "text": "Tus sueños huyeron\n"
32
+ },
33
+ {
34
+ "start": 43.75,
35
+ "end": 45.82,
36
+ "text": "Mientras corrías sin dudar a toda prisa\n"
37
+ },
38
+ {
39
+ "start": 45.82,
40
+ "end": 48.6,
41
+ "text": "Intentando destacar\n\n"
42
+ },
43
+ {
44
+ "start": 52.33,
45
+ "end": 53.71,
46
+ "text": "Intentando\n"
47
+ },
48
+ {
49
+ "start": 57.32,
50
+ "end": 58.64,
51
+ "text": "Destacar\n"
52
+ },
53
+ {
54
+ "start": 62.35,
55
+ "end": 63.84,
56
+ "text": "Intentando\n"
57
+ },
58
+ {
59
+ "start": 67.33,
60
+ "end": 68.59,
61
+ "text": "Destacar\n\n"
62
+ },
63
+ {
64
+ "start": 68.59,
65
+ "end": 70.48,
66
+ "text": "Mira, se van, corre, ¿dónde van?\n"
67
+ },
68
+ {
69
+ "start": 70.48,
70
+ "end": 73.41,
71
+ "text": "No pierdas ni un segundo que lo vas a alcanzar\n"
72
+ },
73
+ {
74
+ "start": 73.76,
75
+ "end": 75.86,
76
+ "text": "Y cuando llegues, si es que llegas, no te olvides\n"
77
+ },
78
+ {
79
+ "start": 75.93,
80
+ "end": 78.26,
81
+ "text": "Pararte a descansar\n\n"
82
+ },
83
+ {
84
+ "start": 78.59,
85
+ "end": 80.46,
86
+ "text": "Mira, se van, corre, ¿dónde van?\n"
87
+ },
88
+ {
89
+ "start": 80.46,
90
+ "end": 83.4,
91
+ "text": "Tus sueños huyeron, los dejaste escapar\n"
92
+ },
93
+ {
94
+ "start": 83.77,
95
+ "end": 85.79,
96
+ "text": "Mientras corrías sin dudar a toda prisa\n"
97
+ },
98
+ {
99
+ "start": 85.79,
100
+ "end": 89.44,
101
+ "text": "Intentando destacar\n\n"
102
+ },
103
+ {
104
+ "start": 112.35,
105
+ "end": 113.71,
106
+ "text": "Intentando\n"
107
+ },
108
+ {
109
+ "start": 117.35,
110
+ "end": 118.79,
111
+ "text": "Destacar\n"
112
+ },
113
+ {
114
+ "start": 122.35,
115
+ "end": 123.81,
116
+ "text": "Intentando\n\n"
117
+ },
118
+ {
119
+ "start": 130.05,
120
+ "end": 134.7,
121
+ "text": "Busca un hueco en la agenda y sonríe otra ve'\n"
122
+ },
123
+ {
124
+ "start": 134.87,
125
+ "end": 140.67,
126
+ "text": "(Uh-uh-uh, uh-uh-uh, uh-uh-uh-uh)\n"
127
+ },
128
+ {
129
+ "start": 140.78,
130
+ "end": 145.8,
131
+ "text": "Que no te hunda el ritmo que lleva ese tren\n"
132
+ },
133
+ {
134
+ "start": 146.04,
135
+ "end": 152.14,
136
+ "text": "(Uh-uh-uh, uh-uh-uh, uh-uh-uh-uh)\n"
137
+ },
138
+ {
139
+ "start": 151.94,
140
+ "end": 157.11,
141
+ "text": "¿De qué sirve vivir ahogado y con estrés?\n"
142
+ },
143
+ {
144
+ "start": 157.2,
145
+ "end": 163.03,
146
+ "text": "(Uh-uh-uh, uh-uh-uh, uh-uh-uh-uh)\n"
147
+ },
148
+ {
149
+ "start": 163.12,
150
+ "end": 168.24,
151
+ "text": "Esclavo de tu tiempo, hazlo al revés\n"
152
+ },
153
+ {
154
+ "start": 168.35,
155
+ "end": 173.19,
156
+ "text": "(Uh-uh-uh, uh)\n\n"
157
+ },
158
+ {
159
+ "start": 173.19,
160
+ "end": 175.13,
161
+ "text": "Mira, se van, corre, ¿dónde van?\n"
162
+ },
163
+ {
164
+ "start": 175.13,
165
+ "end": 178.04,
166
+ "text": "No pierdas ni un segundo que lo vas a alcanzar\n"
167
+ },
168
+ {
169
+ "start": 178.43,
170
+ "end": 180.51,
171
+ "text": "Y cuando llegues, si es que llegas, no te olvides\n"
172
+ },
173
+ {
174
+ "start": 180.61,
175
+ "end": 182.52,
176
+ "text": "Pararte a descansar\n\n"
177
+ },
178
+ {
179
+ "start": 183.24,
180
+ "end": 185.12,
181
+ "text": "Mira, se van, corre, ¿dónde van?\n"
182
+ },
183
+ {
184
+ "start": 185.44,
185
+ "end": 187.65,
186
+ "text": "Tus sueños huyeron\n"
187
+ },
188
+ {
189
+ "start": 188.41,
190
+ "end": 190.44,
191
+ "text": "Mientras corrías sin dudar a toda prisa\n"
192
+ },
193
+ {
194
+ "start": 190.44,
195
+ "end": 192.63,
196
+ "text": "Intentando destacar\n"
197
+ }
198
+ ]
199
+ }
alignment/Intro_[Pulsschlag]_-_Zeugen_der_Leere_(2).json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 47.08,
5
+ "end": 50.75,
6
+ "text": "Durch diese Wände dringt ein dumpfer Klang\n"
7
+ },
8
+ {
9
+ "start": 51.65,
10
+ "end": 54.54,
11
+ "text": "Und er führt uns im Kreis\n"
12
+ },
13
+ {
14
+ "start": 55.89,
15
+ "end": 60.37,
16
+ "text": "Was jetzt noch bleibt, ist keine Zeit zu verlieren\n"
17
+ },
18
+ {
19
+ "start": 60.81,
20
+ "end": 64.26,
21
+ "text": "Sind gefangen im Labyrinth\n"
22
+ },
23
+ {
24
+ "start": 64.85,
25
+ "end": 69.21,
26
+ "text": "Der Wille ist stark und es verlangt nach mehr\n"
27
+ },
28
+ {
29
+ "start": 69.69,
30
+ "end": 73.83,
31
+ "text": "Die wunde Kehle erhebt ihre Stimme\n"
32
+ },
33
+ {
34
+ "start": 74.4,
35
+ "end": 78.32,
36
+ "text": "Selbst wenn sich der Geist vom Körper trennt\n"
37
+ },
38
+ {
39
+ "start": 78.83,
40
+ "end": 87.45,
41
+ "text": "Erfüllt uns kein Frieden dieser Welt\n\n"
42
+ },
43
+ {
44
+ "start": 101.42,
45
+ "end": 105.98,
46
+ "text": "Der Puls schlägt schneller und der Hass nimmt die Luft\n"
47
+ },
48
+ {
49
+ "start": 105.98,
50
+ "end": 110.39,
51
+ "text": "Ein Feuer wächst in unserer Brust\n"
52
+ },
53
+ {
54
+ "start": 110.57,
55
+ "end": 115.13,
56
+ "text": "Entflammte Gedanken trocknen die Tränen\n"
57
+ },
58
+ {
59
+ "start": 115.13,
60
+ "end": 120.59,
61
+ "text": "Das Blut verbrennt in den Venen\n"
62
+ }
63
+ ]
64
+ }
alignment/JASON_MILLER_-_CROWD_PLEASER.json ADDED
@@ -0,0 +1,359 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 20.02,
5
+ "end": 21.98,
6
+ "text": "People gon' hate, let 'em do it (ah)\n"
7
+ },
8
+ {
9
+ "start": 21.9,
10
+ "end": 23.82,
11
+ "text": "Shine like it ain't nothin' to it (that's right)\n"
12
+ },
13
+ {
14
+ "start": 23.74,
15
+ "end": 25.58,
16
+ "text": "Damn, you a major influence (oh)\n"
17
+ },
18
+ {
19
+ "start": 25.44,
20
+ "end": 27.03,
21
+ "text": "Skate like there ain't nothin' doin'\n"
22
+ },
23
+ {
24
+ "start": 27.03,
25
+ "end": 28.86,
26
+ "text": "Live life, don't say nothin' to 'em\n\n"
27
+ },
28
+ {
29
+ "start": 29.61,
30
+ "end": 31.57,
31
+ "text": "People gon' hate, let 'em do it (ah)\n"
32
+ },
33
+ {
34
+ "start": 31.42,
35
+ "end": 32.99,
36
+ "text": "Shine like it ain't nothin' to it (that's right)\n"
37
+ },
38
+ {
39
+ "start": 33.37,
40
+ "end": 35.01,
41
+ "text": "Damn, you a major influence (oh)\n"
42
+ },
43
+ {
44
+ "start": 35.04,
45
+ "end": 36.64,
46
+ "text": "Skate like there ain't nothin' doin'\n"
47
+ },
48
+ {
49
+ "start": 36.64,
50
+ "end": 38.59,
51
+ "text": "Live life, don't say nothin' to 'em\n\n"
52
+ },
53
+ {
54
+ "start": 39.26,
55
+ "end": 40.86,
56
+ "text": "People tellin' lies on me\n"
57
+ },
58
+ {
59
+ "start": 41.08,
60
+ "end": 43.11,
61
+ "text": "Feelin' like Pac, all eyes on me\n"
62
+ },
63
+ {
64
+ "start": 43.46,
65
+ "end": 44.98,
66
+ "text": "What my next rhyme gon' be\n"
67
+ },
68
+ {
69
+ "start": 45.29,
70
+ "end": 47.97,
71
+ "text": "Dull motherfuckers never ever gon' shine off me?\n"
72
+ },
73
+ {
74
+ "start": 48.62,
75
+ "end": 50.84,
76
+ "text": "Wait for it, wait for it, wait for it\n"
77
+ },
78
+ {
79
+ "start": 51.03,
80
+ "end": 53.25,
81
+ "text": "Don't worry, my haters is gon' pay for it\n"
82
+ },
83
+ {
84
+ "start": 53.37,
85
+ "end": 55.59,
86
+ "text": "Chase dreams but dumb niggas that chase whores\n"
87
+ },
88
+ {
89
+ "start": 55.88,
90
+ "end": 59.57,
91
+ "text": "Overseas on a great tour, or maybe I'm just dreamin'\n"
92
+ },
93
+ {
94
+ "start": 60.01,
95
+ "end": 62.54,
96
+ "text": "It beats bein' with demons, all niggas are schemin'\n"
97
+ },
98
+ {
99
+ "start": 62.54,
100
+ "end": 64.28,
101
+ "text": "At least I'm thinkin' of an achievement\n"
102
+ },
103
+ {
104
+ "start": 64.47,
105
+ "end": 67.07,
106
+ "text": "People talk shit for four seasons for no reason\n"
107
+ },
108
+ {
109
+ "start": 67.45,
110
+ "end": 69.41,
111
+ "text": "People dog Lebron 'til Lebron show up\n"
112
+ },
113
+ {
114
+ "start": 69.83,
115
+ "end": 71.87,
116
+ "text": "When he steps on the paint, then their guards go up\n"
117
+ },
118
+ {
119
+ "start": 71.96,
120
+ "end": 74.27,
121
+ "text": "Scores go up, all the applause go up\n"
122
+ },
123
+ {
124
+ "start": 74.35,
125
+ "end": 77.34,
126
+ "text": "And everybody in the whole damn court goes nuts\n\n"
127
+ },
128
+ {
129
+ "start": 77.65,
130
+ "end": 79.55,
131
+ "text": "People gon' hate, let 'em do it (ah)\n"
132
+ },
133
+ {
134
+ "start": 79.46,
135
+ "end": 81.46,
136
+ "text": "Shine like it ain't nothin' to it (that's right)\n"
137
+ },
138
+ {
139
+ "start": 81.38,
140
+ "end": 82.98,
141
+ "text": "Damn, you a major influence (oh)\n"
142
+ },
143
+ {
144
+ "start": 83.01,
145
+ "end": 84.67,
146
+ "text": "Skate like there ain't nothin' doin'\n"
147
+ },
148
+ {
149
+ "start": 84.67,
150
+ "end": 86.39,
151
+ "text": "Live life, don't say nothin' to 'em\n\n"
152
+ },
153
+ {
154
+ "start": 87.22,
155
+ "end": 89.23,
156
+ "text": "People gon' hate, let 'em do it (ah)\n"
157
+ },
158
+ {
159
+ "start": 89.0,
160
+ "end": 91.01,
161
+ "text": "Shine like it ain't nothin' to it (that's right)\n"
162
+ },
163
+ {
164
+ "start": 90.92,
165
+ "end": 92.61,
166
+ "text": "Damn, you a major influence (oh)\n"
167
+ },
168
+ {
169
+ "start": 92.64,
170
+ "end": 94.22,
171
+ "text": "Skate like there ain't nothin' doin'\n"
172
+ },
173
+ {
174
+ "start": 94.22,
175
+ "end": 96.02,
176
+ "text": "Live life, don't say nothin' to 'em\n\n"
177
+ },
178
+ {
179
+ "start": 96.49,
180
+ "end": 98.46,
181
+ "text": "Spectators, sideliners\n"
182
+ },
183
+ {
184
+ "start": 98.99,
185
+ "end": 100.99,
186
+ "text": "Spendin' days comin' up with sly comments\n"
187
+ },
188
+ {
189
+ "start": 100.99,
190
+ "end": 103.63,
191
+ "text": "That's psychotic, why tarnish a fly product?\n"
192
+ },
193
+ {
194
+ "start": 103.85,
195
+ "end": 105.85,
196
+ "text": "Why be mad just 'cause I got it? Hey\n"
197
+ },
198
+ {
199
+ "start": 106.18,
200
+ "end": 108.18,
201
+ "text": "I may never know, wave to the haters\n"
202
+ },
203
+ {
204
+ "start": 108.09,
205
+ "end": 109.42,
206
+ "text": "That put me on the pedestal\n"
207
+ },
208
+ {
209
+ "start": 109.46,
210
+ "end": 111.79,
211
+ "text": "Talk smack, but they really know I'm incredible\n"
212
+ },
213
+ {
214
+ "start": 112.15,
215
+ "end": 115.41,
216
+ "text": "Unforgettable, young blue eyes, the new guy is on schedule\n"
217
+ },
218
+ {
219
+ "start": 115.46,
220
+ "end": 117.73,
221
+ "text": "Man behind bars and that's minus the federal\n"
222
+ },
223
+ {
224
+ "start": 117.88,
225
+ "end": 120.17,
226
+ "text": "Stone giant, what the hell could some pebbles do\n"
227
+ },
228
+ {
229
+ "start": 120.53,
230
+ "end": 122.57,
231
+ "text": "While you revel in drama, I'm buildin' revenue\n"
232
+ },
233
+ {
234
+ "start": 122.79,
235
+ "end": 125.08,
236
+ "text": "Tell 'em you'll get 'em tomorrow, there ain't no stressin' you\n"
237
+ },
238
+ {
239
+ "start": 125.36,
240
+ "end": 127.06,
241
+ "text": "Life goes on, life goes on\n"
242
+ },
243
+ {
244
+ "start": 127.24,
245
+ "end": 129.43,
246
+ "text": "You the shit even before those lights went on\n"
247
+ },
248
+ {
249
+ "start": 129.57,
250
+ "end": 131.87,
251
+ "text": "They gon' trash you even if they like your song\n"
252
+ },
253
+ {
254
+ "start": 132.06,
255
+ "end": 134.34,
256
+ "text": "People always gon' judge homie right or wrong\n\n"
257
+ },
258
+ {
259
+ "start": 135.28,
260
+ "end": 136.84,
261
+ "text": "People gon' hate, let 'em do it\n"
262
+ },
263
+ {
264
+ "start": 137.08,
265
+ "end": 138.61,
266
+ "text": "Shine like it ain't nothin' to it\n"
267
+ },
268
+ {
269
+ "start": 138.99,
270
+ "end": 140.52,
271
+ "text": "Damn, you're a major influence\n"
272
+ },
273
+ {
274
+ "start": 140.69,
275
+ "end": 142.33,
276
+ "text": "Skate like there ain't nothin' doin'\n"
277
+ },
278
+ {
279
+ "start": 142.33,
280
+ "end": 143.99,
281
+ "text": "Live life, don't say nothin' to 'em\n\n"
282
+ },
283
+ {
284
+ "start": 144.87,
285
+ "end": 146.36,
286
+ "text": "People gon' hate, let 'em do it\n"
287
+ },
288
+ {
289
+ "start": 146.58,
290
+ "end": 148.35,
291
+ "text": "Shine like it ain't nothin' to it\n"
292
+ },
293
+ {
294
+ "start": 148.48,
295
+ "end": 150.05,
296
+ "text": "Damn, you're a major influence\n"
297
+ },
298
+ {
299
+ "start": 150.21,
300
+ "end": 151.82,
301
+ "text": "Skate like there ain't nothin' doin'\n"
302
+ },
303
+ {
304
+ "start": 151.82,
305
+ "end": 153.59,
306
+ "text": "Live life, don't say nothin' to 'em\n\n"
307
+ },
308
+ {
309
+ "start": 154.51,
310
+ "end": 155.98,
311
+ "text": "We don't give a damn what you did\n"
312
+ },
313
+ {
314
+ "start": 156.3,
315
+ "end": 157.7,
316
+ "text": "We don't give a damn who are\n"
317
+ },
318
+ {
319
+ "start": 158.01,
320
+ "end": 159.57,
321
+ "text": "Homie, you ain't down with the team\n"
322
+ },
323
+ {
324
+ "start": 159.87,
325
+ "end": 161.38,
326
+ "text": "We don't give a damn what you think\n"
327
+ },
328
+ {
329
+ "start": 161.65,
330
+ "end": 163.71,
331
+ "text": "We don't give a damn what you thought (thought, thought)\n\n"
332
+ },
333
+ {
334
+ "start": 164.06,
335
+ "end": 165.6,
336
+ "text": "We don't give a damn what you did\n"
337
+ },
338
+ {
339
+ "start": 165.94,
340
+ "end": 167.33,
341
+ "text": "We don't give a damn who are\n"
342
+ },
343
+ {
344
+ "start": 167.69,
345
+ "end": 169.15,
346
+ "text": "Homie, you ain't down with the team\n"
347
+ },
348
+ {
349
+ "start": 169.5,
350
+ "end": 170.9,
351
+ "text": "We don't give a damn what you think\n"
352
+ },
353
+ {
354
+ "start": 171.28,
355
+ "end": 173.41,
356
+ "text": "We don't give a damn what you thought (thought, thought)\n"
357
+ }
358
+ ]
359
+ }
alignment/Keine_Lust_-_Jonny_M.json ADDED
@@ -0,0 +1,619 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 9.01,
5
+ "end": 14.74,
6
+ "text": "(Ja-ja-ja-ja-ja-ja, oh)\n\n"
7
+ },
8
+ {
9
+ "start": 16.64,
10
+ "end": 18.42,
11
+ "text": "Ich hab keine Lust mir das Leben\n"
12
+ },
13
+ {
14
+ "start": 18.62,
15
+ "end": 20.18,
16
+ "text": "Von Deppen vermasseln zu lassen\n"
17
+ },
18
+ {
19
+ "start": 20.41,
20
+ "end": 20.92,
21
+ "text": "Sag mir nicht\n"
22
+ },
23
+ {
24
+ "start": 21.16,
25
+ "end": 22.41,
26
+ "text": "Ich könnt' was besser machen\n\n"
27
+ },
28
+ {
29
+ "start": 22.41,
30
+ "end": 24.21,
31
+ "text": "Ich hab keine Lust mir das Leben\n"
32
+ },
33
+ {
34
+ "start": 24.4,
35
+ "end": 25.97,
36
+ "text": "Von Deppen vermasseln zu lassen\n"
37
+ },
38
+ {
39
+ "start": 26.2,
40
+ "end": 26.74,
41
+ "text": "Sag mir nicht\n"
42
+ },
43
+ {
44
+ "start": 26.93,
45
+ "end": 28.11,
46
+ "text": "Ich könnt' was besser machen\n\n"
47
+ },
48
+ {
49
+ "start": 28.2,
50
+ "end": 29.68,
51
+ "text": "Ich habe keine Lust darauf\n"
52
+ },
53
+ {
54
+ "start": 29.81,
55
+ "end": 31.46,
56
+ "text": "Dass du mich ständig korrigierst\n"
57
+ },
58
+ {
59
+ "start": 31.63,
60
+ "end": 32.81,
61
+ "text": "Mir sagst was ich zu tun hab\n"
62
+ },
63
+ {
64
+ "start": 32.91,
65
+ "end": 34.26,
66
+ "text": "Und es selber nicht probierst\n\n"
67
+ },
68
+ {
69
+ "start": 34.33,
70
+ "end": 35.44,
71
+ "text": "Keine Lust darauf\n"
72
+ },
73
+ {
74
+ "start": 35.6,
75
+ "end": 37.19,
76
+ "text": "Dass du ewig dazwischenfunkst\n"
77
+ },
78
+ {
79
+ "start": 37.42,
80
+ "end": 38.72,
81
+ "text": "Mir dauernd alles vorhältst\n"
82
+ },
83
+ {
84
+ "start": 38.72,
85
+ "end": 40.08,
86
+ "text": "Und es selber nicht versuchst\n\n"
87
+ },
88
+ {
89
+ "start": 40.13,
90
+ "end": 41.27,
91
+ "text": "Keine Lust darauf\n"
92
+ },
93
+ {
94
+ "start": 41.4,
95
+ "end": 42.98,
96
+ "text": "Immer dasselbe zu hören\n"
97
+ },
98
+ {
99
+ "start": 42.98,
100
+ "end": 44.4,
101
+ "text": "Hältst es wohl nicht für möglich\n"
102
+ },
103
+ {
104
+ "start": 44.47,
105
+ "end": 45.79,
106
+ "text": "Dass mich sowas manchmal stört\n\n"
107
+ },
108
+ {
109
+ "start": 45.91,
110
+ "end": 47.08,
111
+ "text": "Keine Lust darauf\n"
112
+ },
113
+ {
114
+ "start": 47.18,
115
+ "end": 48.62,
116
+ "text": "Immer dasselbe zu tun\n"
117
+ },
118
+ {
119
+ "start": 48.62,
120
+ "end": 50.06,
121
+ "text": "Ich hab kein Bock mehr drauf\n"
122
+ },
123
+ {
124
+ "start": 50.25,
125
+ "end": 51.57,
126
+ "text": "Also lass mich doch in Ruh'\n\n"
127
+ },
128
+ {
129
+ "start": 51.69,
130
+ "end": 52.46,
131
+ "text": "Keine Lust\n"
132
+ },
133
+ {
134
+ "start": 52.78,
135
+ "end": 54.57,
136
+ "text": "Nein, nein, nein, nein\n"
137
+ },
138
+ {
139
+ "start": 54.57,
140
+ "end": 56.29,
141
+ "text": "Keine Lust\n"
142
+ },
143
+ {
144
+ "start": 57.12,
145
+ "end": 58.22,
146
+ "text": "Ich hab keine Lust\n"
147
+ },
148
+ {
149
+ "start": 58.56,
150
+ "end": 60.36,
151
+ "text": "Nein, nein, nein, nein\n"
152
+ },
153
+ {
154
+ "start": 60.36,
155
+ "end": 62.45,
156
+ "text": "Keine Lust, ey\n\n"
157
+ },
158
+ {
159
+ "start": 62.91,
160
+ "end": 64.34,
161
+ "text": "Ich habe keine Lust darauf\n"
162
+ },
163
+ {
164
+ "start": 64.54,
165
+ "end": 66.07,
166
+ "text": "Dass du mich ewig fertig machst\n"
167
+ },
168
+ {
169
+ "start": 66.34,
170
+ "end": 67.44,
171
+ "text": "Mich immer kritisierst\n"
172
+ },
173
+ {
174
+ "start": 67.44,
175
+ "end": 68.99,
176
+ "text": "Und dabei selber gar nichts schaffst\n\n"
177
+ },
178
+ {
179
+ "start": 69.06,
180
+ "end": 70.28,
181
+ "text": "Keine Lust dadurch\n"
182
+ },
183
+ {
184
+ "start": 70.5,
185
+ "end": 71.93,
186
+ "text": "Dass du dauernd etwas hast\n"
187
+ },
188
+ {
189
+ "start": 72.28,
190
+ "end": 73.35,
191
+ "text": "Nie passt dir was\n"
192
+ },
193
+ {
194
+ "start": 73.35,
195
+ "end": 74.74,
196
+ "text": "Sondern sagst, ich hätt' versagt\n\n"
197
+ },
198
+ {
199
+ "start": 74.83,
200
+ "end": 76.18,
201
+ "text": "Keine Lust darauf\n"
202
+ },
203
+ {
204
+ "start": 76.26,
205
+ "end": 77.71,
206
+ "text": "Meistens Schuld zu sein\n"
207
+ },
208
+ {
209
+ "start": 77.71,
210
+ "end": 79.16,
211
+ "text": "Du kriegst gar nichts auf die Reihe\n"
212
+ },
213
+ {
214
+ "start": 79.16,
215
+ "end": 80.5,
216
+ "text": "Und lässt dich auf nichts ein\n\n"
217
+ },
218
+ {
219
+ "start": 80.59,
220
+ "end": 81.79,
221
+ "text": "Keine Lust darauf\n"
222
+ },
223
+ {
224
+ "start": 82.06,
225
+ "end": 83.49,
226
+ "text": "Immer Lust haben zu müssen\n"
227
+ },
228
+ {
229
+ "start": 83.82,
230
+ "end": 84.72,
231
+ "text": "Schließlich musst du ja\n"
232
+ },
233
+ {
234
+ "start": 84.94,
235
+ "end": 86.29,
236
+ "text": "Immer alles besser wissen\n\n"
237
+ },
238
+ {
239
+ "start": 86.38,
240
+ "end": 87.78,
241
+ "text": "Keine Lust mir das Leben\n"
242
+ },
243
+ {
244
+ "start": 88.01,
245
+ "end": 89.57,
246
+ "text": "Von Deppen vermasseln zu lassen\n"
247
+ },
248
+ {
249
+ "start": 89.82,
250
+ "end": 90.39,
251
+ "text": "Sag mir nicht\n"
252
+ },
253
+ {
254
+ "start": 90.54,
255
+ "end": 91.81,
256
+ "text": "Ich könnte was besser machen\n\n"
257
+ },
258
+ {
259
+ "start": 91.81,
260
+ "end": 93.59,
261
+ "text": "Ich habe keine Lust mir das Leben\n"
262
+ },
263
+ {
264
+ "start": 93.8,
265
+ "end": 95.36,
266
+ "text": "Von Deppen vermasseln zu lassen\n"
267
+ },
268
+ {
269
+ "start": 95.57,
270
+ "end": 96.14,
271
+ "text": "Sag mir nicht\n"
272
+ },
273
+ {
274
+ "start": 96.34,
275
+ "end": 97.6,
276
+ "text": "Ich könnt' was besser machen\n\n"
277
+ },
278
+ {
279
+ "start": 97.6,
280
+ "end": 98.77,
281
+ "text": "Ich hab keine Lust\n"
282
+ },
283
+ {
284
+ "start": 99.05,
285
+ "end": 100.84,
286
+ "text": "Nein, nein, nein, nein\n"
287
+ },
288
+ {
289
+ "start": 100.84,
290
+ "end": 102.64,
291
+ "text": "Keine Lust\n"
292
+ },
293
+ {
294
+ "start": 103.39,
295
+ "end": 104.56,
296
+ "text": "Ich hab keine Lust\n"
297
+ },
298
+ {
299
+ "start": 104.82,
300
+ "end": 106.62,
301
+ "text": "Nein, nein, nein, nein\n"
302
+ },
303
+ {
304
+ "start": 106.62,
305
+ "end": 108.82,
306
+ "text": "Keine Lust, ey\n\n"
307
+ },
308
+ {
309
+ "start": 109.18,
310
+ "end": 110.7,
311
+ "text": "Ich hab keine Lust darauf\n"
312
+ },
313
+ {
314
+ "start": 110.78,
315
+ "end": 112.5,
316
+ "text": "Dass du mich ständig attackierst\n"
317
+ },
318
+ {
319
+ "start": 112.61,
320
+ "end": 113.87,
321
+ "text": "Mir sagst, was ich zu tun hab\n"
322
+ },
323
+ {
324
+ "start": 113.87,
325
+ "end": 115.3,
326
+ "text": "Und es selber nicht probierst\n\n"
327
+ },
328
+ {
329
+ "start": 115.3,
330
+ "end": 116.38,
331
+ "text": "Keine Lust darauf\n"
332
+ },
333
+ {
334
+ "start": 116.56,
335
+ "end": 118.29,
336
+ "text": "Dass du ewig dazwischenfunkst\n"
337
+ },
338
+ {
339
+ "start": 118.37,
340
+ "end": 119.66,
341
+ "text": "Mir dauernd alles vorhältst\n"
342
+ },
343
+ {
344
+ "start": 119.66,
345
+ "end": 121.07,
346
+ "text": "Und es selber nicht versuchst\n\n"
347
+ },
348
+ {
349
+ "start": 121.07,
350
+ "end": 122.15,
351
+ "text": "Keine Lust darauf\n"
352
+ },
353
+ {
354
+ "start": 122.36,
355
+ "end": 123.97,
356
+ "text": "Immer dasselbe zu hören\n"
357
+ },
358
+ {
359
+ "start": 123.97,
360
+ "end": 125.42,
361
+ "text": "Hältst es wohl nicht für möglich\n"
362
+ },
363
+ {
364
+ "start": 125.42,
365
+ "end": 126.76,
366
+ "text": "Dass mich sowas manchmal stört\n\n"
367
+ },
368
+ {
369
+ "start": 126.87,
370
+ "end": 127.96,
371
+ "text": "Keine Lust darauf\n"
372
+ },
373
+ {
374
+ "start": 128.14,
375
+ "end": 129.59,
376
+ "text": "Immer dasselbe zu tun\n"
377
+ },
378
+ {
379
+ "start": 129.59,
380
+ "end": 131.01,
381
+ "text": "Ich hab' kein Bock mehr drauf\n"
382
+ },
383
+ {
384
+ "start": 131.22,
385
+ "end": 132.55,
386
+ "text": "Also lass mich doch in Ruh'\n\n"
387
+ },
388
+ {
389
+ "start": 132.65,
390
+ "end": 134.08,
391
+ "text": "Keine Lust mir das Leben\n"
392
+ },
393
+ {
394
+ "start": 134.28,
395
+ "end": 135.87,
396
+ "text": "Von Deppen vermasseln zu lassen\n"
397
+ },
398
+ {
399
+ "start": 136.08,
400
+ "end": 136.61,
401
+ "text": "Sag mir nicht\n"
402
+ },
403
+ {
404
+ "start": 136.82,
405
+ "end": 138.08,
406
+ "text": "Ich könnt' was besser machen\n"
407
+ },
408
+ {
409
+ "start": 138.08,
410
+ "end": 139.9,
411
+ "text": "Ich habe keine Lust mir das Leben\n"
412
+ },
413
+ {
414
+ "start": 140.06,
415
+ "end": 141.66,
416
+ "text": "Von Deppen vermasseln zu lassen\n"
417
+ },
418
+ {
419
+ "start": 141.84,
420
+ "end": 142.41,
421
+ "text": "Sag mir nicht\n"
422
+ },
423
+ {
424
+ "start": 142.61,
425
+ "end": 143.86,
426
+ "text": "Ich könnt' was besser machen\n\n"
427
+ },
428
+ {
429
+ "start": 143.86,
430
+ "end": 144.92,
431
+ "text": "Ich hab keine Lust\n"
432
+ },
433
+ {
434
+ "start": 145.31,
435
+ "end": 147.11,
436
+ "text": "Nein nein nein nein\n"
437
+ },
438
+ {
439
+ "start": 147.11,
440
+ "end": 148.71,
441
+ "text": "Keine Lust\n"
442
+ },
443
+ {
444
+ "start": 149.65,
445
+ "end": 150.81,
446
+ "text": "Ich hab keine Lust\n"
447
+ },
448
+ {
449
+ "start": 151.09,
450
+ "end": 152.89,
451
+ "text": "Nein nein nein nein\n"
452
+ },
453
+ {
454
+ "start": 152.89,
455
+ "end": 155.07,
456
+ "text": "Keine Lust, ey\n\n"
457
+ },
458
+ {
459
+ "start": 155.45,
460
+ "end": 156.57,
461
+ "text": "Ich hab keine Lust\n"
462
+ },
463
+ {
464
+ "start": 156.87,
465
+ "end": 158.68,
466
+ "text": "Nein nein nein nein\n"
467
+ },
468
+ {
469
+ "start": 158.68,
470
+ "end": 160.35,
471
+ "text": "Keine Lust\n"
472
+ },
473
+ {
474
+ "start": 161.2,
475
+ "end": 162.3,
476
+ "text": "Ich hab keine Lust\n"
477
+ },
478
+ {
479
+ "start": 162.66,
480
+ "end": 164.46,
481
+ "text": "Nein nein nein nein\n"
482
+ },
483
+ {
484
+ "start": 164.46,
485
+ "end": 166.67,
486
+ "text": "Keine Lust, ey\n\n"
487
+ },
488
+ {
489
+ "start": 167.0,
490
+ "end": 168.05,
491
+ "text": "Ich hab keine Lust\n"
492
+ },
493
+ {
494
+ "start": 168.43,
495
+ "end": 170.19,
496
+ "text": "Nein nein nein nein\n"
497
+ },
498
+ {
499
+ "start": 170.25,
500
+ "end": 172.13,
501
+ "text": "Keine Lust\n"
502
+ },
503
+ {
504
+ "start": 172.78,
505
+ "end": 173.81,
506
+ "text": "Ich hab keine Lust\n"
507
+ },
508
+ {
509
+ "start": 174.22,
510
+ "end": 175.95,
511
+ "text": "Nein nein nein nein\n"
512
+ },
513
+ {
514
+ "start": 176.03,
515
+ "end": 176.86,
516
+ "text": "Keine Lust\n"
517
+ },
518
+ {
519
+ "start": 177.12,
520
+ "end": 178.92,
521
+ "text": "Nein nein nein nein\n\n"
522
+ },
523
+ {
524
+ "start": 178.92,
525
+ "end": 180.34,
526
+ "text": "Keine Lust mir das Leben\n"
527
+ },
528
+ {
529
+ "start": 180.54,
530
+ "end": 182.13,
531
+ "text": "Von Deppen vermasseln zu lassen\n"
532
+ },
533
+ {
534
+ "start": 182.34,
535
+ "end": 182.91,
536
+ "text": "Sag mir nicht\n"
537
+ },
538
+ {
539
+ "start": 183.08,
540
+ "end": 184.36,
541
+ "text": "Ich könnt' was besser machen\n"
542
+ },
543
+ {
544
+ "start": 184.36,
545
+ "end": 186.12,
546
+ "text": "Ich habe keine Lust mir das Leben\n"
547
+ },
548
+ {
549
+ "start": 186.33,
550
+ "end": 187.9,
551
+ "text": "Von Deppen vermasseln zu lassen\n"
552
+ },
553
+ {
554
+ "start": 188.11,
555
+ "end": 188.66,
556
+ "text": "Sag mir nicht\n"
557
+ },
558
+ {
559
+ "start": 188.88,
560
+ "end": 190.13,
561
+ "text": "Ich könnte was besser machen\n\n"
562
+ },
563
+ {
564
+ "start": 190.13,
565
+ "end": 191.23,
566
+ "text": "Ich hab keine Lust\n"
567
+ },
568
+ {
569
+ "start": 191.56,
570
+ "end": 193.37,
571
+ "text": "Nein nein nein nein\n"
572
+ },
573
+ {
574
+ "start": 193.37,
575
+ "end": 195.02,
576
+ "text": "Keine Lust\n"
577
+ },
578
+ {
579
+ "start": 195.92,
580
+ "end": 196.99,
581
+ "text": "Ich hab keine Lust\n"
582
+ },
583
+ {
584
+ "start": 197.34,
585
+ "end": 199.08,
586
+ "text": "Nein nein nein nein\n"
587
+ },
588
+ {
589
+ "start": 199.15,
590
+ "end": 201.38,
591
+ "text": "Keine Lust, ey\n\n"
592
+ },
593
+ {
594
+ "start": 201.7,
595
+ "end": 202.94,
596
+ "text": "Ich hab keine Lust\n"
597
+ },
598
+ {
599
+ "start": 207.48,
600
+ "end": 208.63,
601
+ "text": "Ich hab keine Lust\n"
602
+ },
603
+ {
604
+ "start": 213.24,
605
+ "end": 214.45,
606
+ "text": "Ich hab keine Lust\n"
607
+ },
608
+ {
609
+ "start": 219.04,
610
+ "end": 220.31,
611
+ "text": "Ich hab keine Lust\n"
612
+ },
613
+ {
614
+ "start": 224.83,
615
+ "end": 226.06,
616
+ "text": "Ich hab keine Lust\n"
617
+ }
618
+ ]
619
+ }
alignment/Kinematic_-_Peyote.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 22.84,
5
+ "end": 26.99,
6
+ "text": "I'm asleep at the wheel and there's a curve in the highway\n"
7
+ },
8
+ {
9
+ "start": 30.15,
10
+ "end": 34.81,
11
+ "text": "Yet we tear through the night like a peyote migraine\n"
12
+ },
13
+ {
14
+ "start": 37.09,
15
+ "end": 44.2,
16
+ "text": "How much further is it, aching, so exquisite\n"
17
+ },
18
+ {
19
+ "start": 44.98,
20
+ "end": 49.1,
21
+ "text": "I hope we can stop in time\n\n"
22
+ },
23
+ {
24
+ "start": 52.36,
25
+ "end": 56.95,
26
+ "text": "Now you don't want to dance, 'cause we're looking right through you\n"
27
+ },
28
+ {
29
+ "start": 57.97,
30
+ "end": 64.21,
31
+ "text": "Oh-oh-oh-oh-oh, and the clothes that you wear, we don't mean to stare\n\n"
32
+ },
33
+ {
34
+ "start": 74.48,
35
+ "end": 78.66,
36
+ "text": "Now the sky is on fire and the desert is freezing\n"
37
+ },
38
+ {
39
+ "start": 81.91,
40
+ "end": 86.05,
41
+ "text": "Wonder how I'm alive, when I'm not even breathing\n"
42
+ },
43
+ {
44
+ "start": 88.78,
45
+ "end": 95.96,
46
+ "text": "How much further is it, aching, so exquisite\n"
47
+ },
48
+ {
49
+ "start": 96.65,
50
+ "end": 100.93,
51
+ "text": "I hope we can stop in time\n\n"
52
+ },
53
+ {
54
+ "start": 104.02,
55
+ "end": 108.88,
56
+ "text": "Now you don't want to dance, 'cause we're looking right through you\n"
57
+ },
58
+ {
59
+ "start": 109.58,
60
+ "end": 116.05,
61
+ "text": "Oh-oh-oh-oh-oh, and the clothes that you wear, we don't mean to stare\n"
62
+ },
63
+ {
64
+ "start": 117.05,
65
+ "end": 123.53,
66
+ "text": "Oh-oh-oh-oh-oh, but the people you know, they say what they want to\n"
67
+ },
68
+ {
69
+ "start": 124.31,
70
+ "end": 130.98,
71
+ "text": "Oh-oh-oh-oh-oh, 'cause the truth of it is, we don't really care\n"
72
+ }
73
+ ]
74
+ }
alignment/LUNABLIND_-_Vision__Radio_Edit_.json ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 23.76,
5
+ "end": 25.23,
6
+ "text": "Racking and jacking my mind up\n"
7
+ },
8
+ {
9
+ "start": 25.65,
10
+ "end": 27.07,
11
+ "text": "Cannot be telling the time, I\n"
12
+ },
13
+ {
14
+ "start": 27.61,
15
+ "end": 28.57,
16
+ "text": "Don't care, no\n"
17
+ },
18
+ {
19
+ "start": 29.24,
20
+ "end": 30.52,
21
+ "text": "I don't care, no\n"
22
+ },
23
+ {
24
+ "start": 30.94,
25
+ "end": 32.87,
26
+ "text": "You send thirty messages drunk\n"
27
+ },
28
+ {
29
+ "start": 33.12,
30
+ "end": 34.71,
31
+ "text": "And dirty messages drunk\n"
32
+ },
33
+ {
34
+ "start": 35.14,
35
+ "end": 36.12,
36
+ "text": "But I don't look\n"
37
+ },
38
+ {
39
+ "start": 36.65,
40
+ "end": 38.18,
41
+ "text": "No, I can't be **** to look\n\n"
42
+ },
43
+ {
44
+ "start": 39.0,
45
+ "end": 41.33,
46
+ "text": "I could not breathe\n"
47
+ },
48
+ {
49
+ "start": 42.58,
50
+ "end": 45.18,
51
+ "text": "You took your toll on me\n"
52
+ },
53
+ {
54
+ "start": 46.39,
55
+ "end": 49.0,
56
+ "text": "You're suffocating, please\n"
57
+ },
58
+ {
59
+ "start": 50.21,
60
+ "end": 52.14,
61
+ "text": "But since I watched you leave\n\n"
62
+ },
63
+ {
64
+ "start": 54.3,
65
+ "end": 57.86,
66
+ "text": "I can see for the first time\n"
67
+ },
68
+ {
69
+ "start": 61.67,
70
+ "end": 65.34,
71
+ "text": "And I can see for the first time\n"
72
+ },
73
+ {
74
+ "start": 69.28,
75
+ "end": 72.39,
76
+ "text": "And I can see for the first time\n"
77
+ },
78
+ {
79
+ "start": 72.63,
80
+ "end": 74.38,
81
+ "text": "For the first time\n"
82
+ },
83
+ {
84
+ "start": 76.93,
85
+ "end": 80.05,
86
+ "text": "And I can see for the first time\n\n"
87
+ },
88
+ {
89
+ "start": 88.25,
90
+ "end": 89.41,
91
+ "text": "You get jealous easily\n"
92
+ },
93
+ {
94
+ "start": 90.34,
95
+ "end": 91.58,
96
+ "text": "You did not make it easy\n"
97
+ },
98
+ {
99
+ "start": 92.13,
100
+ "end": 93.54,
101
+ "text": "But what was I expecting?\n"
102
+ },
103
+ {
104
+ "start": 93.91,
105
+ "end": 95.44,
106
+ "text": "It's a very fitting ending\n"
107
+ },
108
+ {
109
+ "start": 95.9,
110
+ "end": 97.65,
111
+ "text": "You say I hurt you bad, well\n"
112
+ },
113
+ {
114
+ "start": 97.83,
115
+ "end": 99.44,
116
+ "text": "That was never my intent\n"
117
+ },
118
+ {
119
+ "start": 99.68,
120
+ "end": 101.25,
121
+ "text": "I was looking out for myself\n"
122
+ },
123
+ {
124
+ "start": 101.64,
125
+ "end": 103.53,
126
+ "text": "And all of my mental health\n\n"
127
+ },
128
+ {
129
+ "start": 103.89,
130
+ "end": 106.15,
131
+ "text": "And I could not breathe\n"
132
+ },
133
+ {
134
+ "start": 107.36,
135
+ "end": 109.84,
136
+ "text": "You took your toll on me\n"
137
+ },
138
+ {
139
+ "start": 111.08,
140
+ "end": 113.77,
141
+ "text": "You're suffocating, please\n"
142
+ },
143
+ {
144
+ "start": 114.91,
145
+ "end": 118.6,
146
+ "text": "But since I watched you leave, I noticed\n\n"
147
+ },
148
+ {
149
+ "start": 118.85,
150
+ "end": 122.23,
151
+ "text": "And I can see for the first time\n"
152
+ },
153
+ {
154
+ "start": 126.71,
155
+ "end": 129.75,
156
+ "text": "I can see for the first time\n"
157
+ },
158
+ {
159
+ "start": 134.28,
160
+ "end": 137.28,
161
+ "text": "I can see for the first time\n"
162
+ },
163
+ {
164
+ "start": 137.49,
165
+ "end": 139.1,
166
+ "text": "For the first time\n"
167
+ },
168
+ {
169
+ "start": 139.28,
170
+ "end": 141.27,
171
+ "text": "For the first time\n"
172
+ },
173
+ {
174
+ "start": 141.65,
175
+ "end": 145.16,
176
+ "text": "And I can see for the first time\n\n"
177
+ },
178
+ {
179
+ "start": 148.49,
180
+ "end": 152.34,
181
+ "text": "There is no better deduction\n"
182
+ },
183
+ {
184
+ "start": 152.34,
185
+ "end": 156.16,
186
+ "text": "There is no better solution\n"
187
+ },
188
+ {
189
+ "start": 156.16,
190
+ "end": 159.94,
191
+ "text": "There is no better deduction\n"
192
+ },
193
+ {
194
+ "start": 159.94,
195
+ "end": 163.83,
196
+ "text": "There is no better solution\n"
197
+ },
198
+ {
199
+ "start": 163.83,
200
+ "end": 167.6,
201
+ "text": "There is no better deduction\n"
202
+ },
203
+ {
204
+ "start": 167.6,
205
+ "end": 171.41,
206
+ "text": "There is no better solution\n"
207
+ },
208
+ {
209
+ "start": 171.41,
210
+ "end": 175.22,
211
+ "text": "There is no better deduction\n"
212
+ },
213
+ {
214
+ "start": 175.22,
215
+ "end": 179.16,
216
+ "text": "There is no better solution\n\n"
217
+ },
218
+ {
219
+ "start": 183.83,
220
+ "end": 187.02,
221
+ "text": "I can see for the first time\n"
222
+ },
223
+ {
224
+ "start": 187.61,
225
+ "end": 190.6,
226
+ "text": "I can see for the first time\n"
227
+ },
228
+ {
229
+ "start": 191.39,
230
+ "end": 194.55,
231
+ "text": "I can see for the first time\n"
232
+ },
233
+ {
234
+ "start": 194.55,
235
+ "end": 196.12,
236
+ "text": "For the first time\n"
237
+ },
238
+ {
239
+ "start": 196.37,
240
+ "end": 198.22,
241
+ "text": "For the first time\n\n"
242
+ },
243
+ {
244
+ "start": 199.0,
245
+ "end": 202.19,
246
+ "text": "I can see for the first time\n"
247
+ },
248
+ {
249
+ "start": 202.87,
250
+ "end": 205.73,
251
+ "text": "I can see for the first time\n"
252
+ },
253
+ {
254
+ "start": 206.67,
255
+ "end": 209.3,
256
+ "text": "I can see for the first time\n"
257
+ },
258
+ {
259
+ "start": 209.68,
260
+ "end": 211.33,
261
+ "text": "For the first time\n"
262
+ },
263
+ {
264
+ "start": 211.69,
265
+ "end": 213.73,
266
+ "text": "For the first time\n"
267
+ }
268
+ ]
269
+ }
alignment/La_rumba_del_coronavirus_-_Rich_Don_Jeri.json ADDED
@@ -0,0 +1,344 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 4.83,
5
+ "end": 6.5,
6
+ "text": "Era un día cualquiera\n"
7
+ },
8
+ {
9
+ "start": 7.04,
10
+ "end": 8.6,
11
+ "text": "En la región de Wuhan\n"
12
+ },
13
+ {
14
+ "start": 9.48,
15
+ "end": 11.26,
16
+ "text": "Y había un pobre hombre\n"
17
+ },
18
+ {
19
+ "start": 11.81,
20
+ "end": 13.37,
21
+ "text": "Que no tenía ni pan\n"
22
+ },
23
+ {
24
+ "start": 14.4,
25
+ "end": 17.07,
26
+ "text": "Entonces algo curioso pasó\n"
27
+ },
28
+ {
29
+ "start": 17.77,
30
+ "end": 19.34,
31
+ "text": "Un murciélago se comió\n"
32
+ },
33
+ {
34
+ "start": 19.34,
35
+ "end": 21.7,
36
+ "text": "Y el coronavirus nació\n\n"
37
+ },
38
+ {
39
+ "start": 23.18,
40
+ "end": 25.53,
41
+ "text": "Coronavirus, coronavirus\n"
42
+ },
43
+ {
44
+ "start": 25.63,
45
+ "end": 27.8,
46
+ "text": "Coronavirus, virus\n"
47
+ },
48
+ {
49
+ "start": 28.07,
50
+ "end": 30.26,
51
+ "text": "Coronavirus, virus\n"
52
+ },
53
+ {
54
+ "start": 30.42,
55
+ "end": 32.66,
56
+ "text": "Coronavirus, virus\n\n"
57
+ },
58
+ {
59
+ "start": 32.85,
60
+ "end": 35.11,
61
+ "text": "Coronavirus, coronavirus\n"
62
+ },
63
+ {
64
+ "start": 35.21,
65
+ "end": 37.33,
66
+ "text": "Coronavirus, virus\n"
67
+ },
68
+ {
69
+ "start": 37.61,
70
+ "end": 39.83,
71
+ "text": "Coronavirus, virus\n"
72
+ },
73
+ {
74
+ "start": 40.02,
75
+ "end": 41.98,
76
+ "text": "Coronavirus\n\n"
77
+ },
78
+ {
79
+ "start": 42.87,
80
+ "end": 44.83,
81
+ "text": "Muy poquito, poquito a poco\n"
82
+ },
83
+ {
84
+ "start": 45.28,
85
+ "end": 47.06,
86
+ "text": "Toda China se enfermó\n"
87
+ },
88
+ {
89
+ "start": 47.69,
90
+ "end": 49.69,
91
+ "text": "Falta de aire y estornudos\n"
92
+ },
93
+ {
94
+ "start": 49.85,
95
+ "end": 51.7,
96
+ "text": "Mocos y un poco de to'\n"
97
+ },
98
+ {
99
+ "start": 52.67,
100
+ "end": 55.87,
101
+ "text": "Entonces se tomaron medidas\n"
102
+ },
103
+ {
104
+ "start": 56.1,
105
+ "end": 57.84,
106
+ "text": "Ya no había otra salida\n"
107
+ },
108
+ {
109
+ "start": 58.26,
110
+ "end": 60.23,
111
+ "text": "El coronavirus se expandió\n\n"
112
+ },
113
+ {
114
+ "start": 61.62,
115
+ "end": 63.88,
116
+ "text": "Coronavirus, coronavirus\n"
117
+ },
118
+ {
119
+ "start": 64.0,
120
+ "end": 66.11,
121
+ "text": "Coronavirus, virus\n"
122
+ },
123
+ {
124
+ "start": 66.49,
125
+ "end": 68.52,
126
+ "text": "Coronavirus, virus\n"
127
+ },
128
+ {
129
+ "start": 68.8,
130
+ "end": 70.89,
131
+ "text": "Coronavirus, virus\n\n"
132
+ },
133
+ {
134
+ "start": 71.26,
135
+ "end": 73.52,
136
+ "text": "Coronavirus, coronavirus\n"
137
+ },
138
+ {
139
+ "start": 73.63,
140
+ "end": 75.77,
141
+ "text": "Coronavirus, virus\n"
142
+ },
143
+ {
144
+ "start": 76.07,
145
+ "end": 78.12,
146
+ "text": "Coronavirus, virus\n"
147
+ },
148
+ {
149
+ "start": 78.41,
150
+ "end": 80.36,
151
+ "text": "Coronavirus\n\n"
152
+ },
153
+ {
154
+ "start": 81.24,
155
+ "end": 83.12,
156
+ "text": "Después de unos cuantos días\n"
157
+ },
158
+ {
159
+ "start": 83.69,
160
+ "end": 85.21,
161
+ "text": "Hasta Italia ya llegó\n"
162
+ },
163
+ {
164
+ "start": 86.11,
165
+ "end": 87.98,
166
+ "text": "El Papa en el Vaticano\n"
167
+ },
168
+ {
169
+ "start": 88.51,
170
+ "end": 90.26,
171
+ "text": "Por todos ellos rezó\n"
172
+ },
173
+ {
174
+ "start": 91.06,
175
+ "end": 94.19,
176
+ "text": "De nada sirvieron sus plegarias\n"
177
+ },
178
+ {
179
+ "start": 94.49,
180
+ "end": 96.48,
181
+ "text": "No le dieron ni las gracias\n"
182
+ },
183
+ {
184
+ "start": 96.71,
185
+ "end": 98.93,
186
+ "text": "Y por Europa se propagó\n\n"
187
+ },
188
+ {
189
+ "start": 99.99,
190
+ "end": 102.34,
191
+ "text": "Coronavirus, coronavirus\n"
192
+ },
193
+ {
194
+ "start": 102.42,
195
+ "end": 104.58,
196
+ "text": "Coronavirus, virus\n"
197
+ },
198
+ {
199
+ "start": 104.88,
200
+ "end": 106.92,
201
+ "text": "Coronavirus, virus\n"
202
+ },
203
+ {
204
+ "start": 107.21,
205
+ "end": 109.32,
206
+ "text": "Coronavirus, virus\n\n"
207
+ },
208
+ {
209
+ "start": 109.61,
210
+ "end": 111.93,
211
+ "text": "Coronavirus, coronavirus\n"
212
+ },
213
+ {
214
+ "start": 112.04,
215
+ "end": 114.15,
216
+ "text": "Coronavirus, virus\n"
217
+ },
218
+ {
219
+ "start": 114.44,
220
+ "end": 116.52,
221
+ "text": "Coronavirus, virus\n"
222
+ },
223
+ {
224
+ "start": 116.81,
225
+ "end": 118.76,
226
+ "text": "Coronavirus\n\n"
227
+ },
228
+ {
229
+ "start": 119.61,
230
+ "end": 121.69,
231
+ "text": "Entre payos y gitanos\n"
232
+ },
233
+ {
234
+ "start": 122.08,
235
+ "end": 123.74,
236
+ "text": "Él no hizo distinción\n"
237
+ },
238
+ {
239
+ "start": 124.44,
240
+ "end": 126.19,
241
+ "text": "Y ha dejado a media España\n"
242
+ },
243
+ {
244
+ "start": 126.85,
245
+ "end": 128.57,
246
+ "text": "Sin calle ni profesión\n"
247
+ },
248
+ {
249
+ "start": 129.4,
250
+ "end": 132.37,
251
+ "text": "Y ahora estamos todos arruinados\n"
252
+ },
253
+ {
254
+ "start": 132.84,
255
+ "end": 134.81,
256
+ "text": "Y esta historia no ha acabado\n"
257
+ },
258
+ {
259
+ "start": 135.29,
260
+ "end": 137.29,
261
+ "text": "Y yo canto esta canción\n\n"
262
+ },
263
+ {
264
+ "start": 138.39,
265
+ "end": 140.69,
266
+ "text": "Coronavirus, coronavirus\n"
267
+ },
268
+ {
269
+ "start": 140.83,
270
+ "end": 143.09,
271
+ "text": "Coronavirus, virus\n"
272
+ },
273
+ {
274
+ "start": 143.27,
275
+ "end": 145.32,
276
+ "text": "Coronavirus, virus\n"
277
+ },
278
+ {
279
+ "start": 145.61,
280
+ "end": 147.72,
281
+ "text": "Coronavirus, virus\n\n"
282
+ },
283
+ {
284
+ "start": 148.02,
285
+ "end": 150.24,
286
+ "text": "Coronavirus, coronavirus\n"
287
+ },
288
+ {
289
+ "start": 150.4,
290
+ "end": 152.64,
291
+ "text": "Coronavirus, virus\n"
292
+ },
293
+ {
294
+ "start": 152.84,
295
+ "end": 154.91,
296
+ "text": "Coronavirus, virus\n"
297
+ },
298
+ {
299
+ "start": 155.21,
300
+ "end": 157.18,
301
+ "text": "Coronavirus\n\n"
302
+ },
303
+ {
304
+ "start": 157.34,
305
+ "end": 159.51,
306
+ "text": "Lo tiene el presidente\n"
307
+ },
308
+ {
309
+ "start": 159.89,
310
+ "end": 161.74,
311
+ "text": "Y también la Merkel\n"
312
+ },
313
+ {
314
+ "start": 162.19,
315
+ "end": 164.14,
316
+ "text": "Lo tiene \"el Coletas\"\n"
317
+ },
318
+ {
319
+ "start": 164.61,
320
+ "end": 166.0,
321
+ "text": "Y hasta ese de Vox\n"
322
+ },
323
+ {
324
+ "start": 167.0,
325
+ "end": 169.01,
326
+ "text": "Lo ha pillado el Papa\n"
327
+ },
328
+ {
329
+ "start": 169.37,
330
+ "end": 171.6,
331
+ "text": "Y también la Paca\n"
332
+ },
333
+ {
334
+ "start": 171.81,
335
+ "end": 175.08,
336
+ "text": "Y si te descuidas\n"
337
+ },
338
+ {
339
+ "start": 175.38,
340
+ "end": 179.07,
341
+ "text": "Tú lo pillarás\n"
342
+ }
343
+ ]
344
+ }
alignment/Le_musée_d'air_contemporain_-_KPTN.json ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 23.37,
5
+ "end": 24.42,
6
+ "text": "C'était l'hiver\n"
7
+ },
8
+ {
9
+ "start": 24.63,
10
+ "end": 26.39,
11
+ "text": "Le jour de la sortie scolaire\n"
12
+ },
13
+ {
14
+ "start": 27.85,
15
+ "end": 29.7,
16
+ "text": "Au musée d'air contemporain\n"
17
+ },
18
+ {
19
+ "start": 31.81,
20
+ "end": 32.91,
21
+ "text": "La lutte des classes\n"
22
+ },
23
+ {
24
+ "start": 32.91,
25
+ "end": 35.21,
26
+ "text": "Pour les professeurs qui menacent\n"
27
+ },
28
+ {
29
+ "start": 36.62,
30
+ "end": 38.34,
31
+ "text": "Les gamins qui n'contemplent rien\n\n"
32
+ },
33
+ {
34
+ "start": 40.97,
35
+ "end": 43.13,
36
+ "text": "On voyait dans des petites fenêtres\n"
37
+ },
38
+ {
39
+ "start": 43.74,
40
+ "end": 45.02,
41
+ "text": "Des photos pas très nettes\n"
42
+ },
43
+ {
44
+ "start": 45.43,
45
+ "end": 47.07,
46
+ "text": "De l'état de l'air de la planète\n"
47
+ },
48
+ {
49
+ "start": 49.73,
50
+ "end": 51.44,
51
+ "text": "Des animaux dans des bocaux\n"
52
+ },
53
+ {
54
+ "start": 51.67,
55
+ "end": 53.74,
56
+ "text": "Des arbres dans des frigos\n"
57
+ },
58
+ {
59
+ "start": 54.02,
60
+ "end": 55.86,
61
+ "text": "Et puis moi, j'trouvais ça beau\n\n"
62
+ },
63
+ {
64
+ "start": 58.02,
65
+ "end": 59.4,
66
+ "text": "Un guide austère\n"
67
+ },
68
+ {
69
+ "start": 59.4,
70
+ "end": 61.24,
71
+ "text": "Nous dépeignait l'histoire de l'air\n"
72
+ },
73
+ {
74
+ "start": 62.4,
75
+ "end": 64.7,
76
+ "text": "La période bleue, la période noire\n"
77
+ },
78
+ {
79
+ "start": 66.73,
80
+ "end": 67.67,
81
+ "text": "Comme si la planète\n"
82
+ },
83
+ {
84
+ "start": 67.82,
85
+ "end": 70.11,
86
+ "text": "Était une grande palette\n"
87
+ },
88
+ {
89
+ "start": 71.09,
90
+ "end": 73.65,
91
+ "text": "Avec le trou d'la couche de jaune\n\n"
92
+ },
93
+ {
94
+ "start": 75.87,
95
+ "end": 77.76,
96
+ "text": "On voyait dans des petites fenêtres\n"
97
+ },
98
+ {
99
+ "start": 78.64,
100
+ "end": 79.88,
101
+ "text": "Des photos pas très nettes\n"
102
+ },
103
+ {
104
+ "start": 79.99,
105
+ "end": 82.28,
106
+ "text": "De l'état de l'air de la planète\n"
107
+ },
108
+ {
109
+ "start": 84.65,
110
+ "end": 86.51,
111
+ "text": "Des animaux dans des bocaux\n"
112
+ },
113
+ {
114
+ "start": 86.51,
115
+ "end": 88.82,
116
+ "text": "Des arbres dans des frigos\n"
117
+ },
118
+ {
119
+ "start": 88.82,
120
+ "end": 90.86,
121
+ "text": "Et puis moi, j'trouvais ça chouette\n\n"
122
+ },
123
+ {
124
+ "start": 110.61,
125
+ "end": 111.82,
126
+ "text": "Paraît qu'avant\n"
127
+ },
128
+ {
129
+ "start": 111.82,
130
+ "end": 114.23,
131
+ "text": "Y avait de l'air, y avait du vent\n"
132
+ },
133
+ {
134
+ "start": 115.08,
135
+ "end": 117.46,
136
+ "text": "De la verdure dans les prairies\n"
137
+ },
138
+ {
139
+ "start": 119.1,
140
+ "end": 120.19,
141
+ "text": "Oui, mais maintenant\n"
142
+ },
143
+ {
144
+ "start": 120.19,
145
+ "end": 122.67,
146
+ "text": "La terre, le ciel, les océans\n"
147
+ },
148
+ {
149
+ "start": 123.86,
150
+ "end": 125.79,
151
+ "text": "Ils sont tout froids, ils sont tout gris\n\n"
152
+ },
153
+ {
154
+ "start": 128.26,
155
+ "end": 130.14,
156
+ "text": "On voyait dans des petites fenêtres\n"
157
+ },
158
+ {
159
+ "start": 130.97,
160
+ "end": 132.11,
161
+ "text": "Des photos pas très nettes\n"
162
+ },
163
+ {
164
+ "start": 132.34,
165
+ "end": 134.52,
166
+ "text": "De l'état de l'air de la planète\n"
167
+ },
168
+ {
169
+ "start": 137.01,
170
+ "end": 138.81,
171
+ "text": "Des animaux dans des bocaux\n"
172
+ },
173
+ {
174
+ "start": 138.88,
175
+ "end": 141.19,
176
+ "text": "Des arbres dans des frigos\n"
177
+ },
178
+ {
179
+ "start": 141.19,
180
+ "end": 143.21,
181
+ "text": "Et puis moi, j'trouvais ça beau\n\n"
182
+ },
183
+ {
184
+ "start": 145.43,
185
+ "end": 146.53,
186
+ "text": "Fin de la visite\n"
187
+ },
188
+ {
189
+ "start": 146.77,
190
+ "end": 148.63,
191
+ "text": "On se dirige vers la boutique\n"
192
+ },
193
+ {
194
+ "start": 150.03,
195
+ "end": 152.05,
196
+ "text": "Du musée d'air contemporain\n"
197
+ },
198
+ {
199
+ "start": 154.0,
200
+ "end": 155.04,
201
+ "text": "Bouteilles d'eau claire\n"
202
+ },
203
+ {
204
+ "start": 155.11,
205
+ "end": 157.74,
206
+ "text": "Sachets de terre et bonbonnes d'air\n"
207
+ },
208
+ {
209
+ "start": 158.87,
210
+ "end": 160.62,
211
+ "text": "Fruits et légumes en parfum\n\n"
212
+ },
213
+ {
214
+ "start": 163.17,
215
+ "end": 165.04,
216
+ "text": "On voyait dans des petites fenêtres\n"
217
+ },
218
+ {
219
+ "start": 165.86,
220
+ "end": 167.15,
221
+ "text": "Des photos pas très nettes\n"
222
+ },
223
+ {
224
+ "start": 167.28,
225
+ "end": 169.41,
226
+ "text": "De l'état de l'air de la planète\n"
227
+ },
228
+ {
229
+ "start": 171.88,
230
+ "end": 173.83,
231
+ "text": "Des animaux dans des bocaux\n"
232
+ },
233
+ {
234
+ "start": 173.83,
235
+ "end": 176.09,
236
+ "text": "Des arbres dans des frigos\n"
237
+ },
238
+ {
239
+ "start": 176.37,
240
+ "end": 178.02,
241
+ "text": "Et puis moi, j'trouvais ça beau\n"
242
+ }
243
+ ]
244
+ }
alignment/Le_royaume_des_glous_glous_-_Raoul_de_QSM.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 22.68,
5
+ "end": 25.4,
6
+ "text": "Par jours de grand vent, les ondes brumeuses s'épanchent\n"
7
+ },
8
+ {
9
+ "start": 25.4,
10
+ "end": 28.09,
11
+ "text": "Agissent comme des cure-dents agrafés sur ta tronche\n"
12
+ },
13
+ {
14
+ "start": 28.16,
15
+ "end": 30.68,
16
+ "text": "Pas un pas, pas un geste, haut les mains, bas les pattes\n"
17
+ },
18
+ {
19
+ "start": 30.8,
20
+ "end": 33.37,
21
+ "text": "The Anatole's conquest, ça tabasse à coups de battes\n\n"
22
+ },
23
+ {
24
+ "start": 33.51,
25
+ "end": 35.83,
26
+ "text": "QSM est puissant, pas trop concupiscent\n"
27
+ },
28
+ {
29
+ "start": 36.13,
30
+ "end": 38.63,
31
+ "text": "Ils n'ont qu'une seule passion, la piquette du baron\n"
32
+ },
33
+ {
34
+ "start": 38.84,
35
+ "end": 41.2,
36
+ "text": "QSM paye comptant, il n'est jamais content\n"
37
+ },
38
+ {
39
+ "start": 41.46,
40
+ "end": 43.93,
41
+ "text": "Il beugle, dissonant et aussi trébuchant\n\n"
42
+ },
43
+ {
44
+ "start": 44.11,
45
+ "end": 46.59,
46
+ "text": "Plus tu aimes Anatole et plus il te déteste\n"
47
+ },
48
+ {
49
+ "start": 46.89,
50
+ "end": 49.38,
51
+ "text": "Pire que Georges Abitbol, il te bouffe comme la peste\n"
52
+ },
53
+ {
54
+ "start": 49.67,
55
+ "end": 52.02,
56
+ "text": "Son courroux éclate, plus chaud qu'un panini\n"
57
+ },
58
+ {
59
+ "start": 52.02,
60
+ "end": 54.62,
61
+ "text": "La violence du squamate égale sa vilenie\n\n"
62
+ },
63
+ {
64
+ "start": 54.62,
65
+ "end": 57.46,
66
+ "text": "Dans un contexte vicié, les aristocrates officient\n"
67
+ },
68
+ {
69
+ "start": 57.46,
70
+ "end": 60.08,
71
+ "text": "L'ambiance est épicée quand ils vident leurs vessies\n"
72
+ },
73
+ {
74
+ "start": 60.08,
75
+ "end": 62.6,
76
+ "text": "C'est la fête des bouchons, le royaume des glous-glous\n"
77
+ },
78
+ {
79
+ "start": 62.82,
80
+ "end": 65.42,
81
+ "text": "L'alcool coule à foison, ils le pompent comme des poux\n\n"
82
+ },
83
+ {
84
+ "start": 92.19,
85
+ "end": 95.89,
86
+ "text": "Sous ses abords austères, Du Skud sait festoyer\n"
87
+ },
88
+ {
89
+ "start": 97.49,
90
+ "end": 101.05,
91
+ "text": "Le marquisat prospère dans la rude chaire vitrée\n"
92
+ },
93
+ {
94
+ "start": 102.81,
95
+ "end": 106.45,
96
+ "text": "Le baron fanfaronne, titille la chartreuse\n"
97
+ },
98
+ {
99
+ "start": 108.15,
100
+ "end": 112.48,
101
+ "text": "C'est pas qu'elle soit bonne, mais qu'est-ce qu'elle tape, la gueuse !\n\n"
102
+ },
103
+ {
104
+ "start": 113.55,
105
+ "end": 117.0,
106
+ "text": "Si l'argent n'a pas d'odeur, la crasse en a bien une\n"
107
+ },
108
+ {
109
+ "start": 118.9,
110
+ "end": 122.27,
111
+ "text": "QSM sent le beurre, tartiné sur ta lune\n\n"
112
+ },
113
+ {
114
+ "start": 153.59,
115
+ "end": 156.82,
116
+ "text": "La véranda résonne comme la bande de Gaza\n"
117
+ },
118
+ {
119
+ "start": 158.72,
120
+ "end": 162.59,
121
+ "text": "Les QSM, obscènes, dégazent comme Zavatta\n"
122
+ }
123
+ ]
124
+ }
alignment/Les_files_d'attente_-_Law'.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 8.72,
5
+ "end": 11.06,
6
+ "text": "Je me faufile en filature\n"
7
+ },
8
+ {
9
+ "start": 12.53,
10
+ "end": 15.1,
11
+ "text": "Le long de longues files en attente\n"
12
+ },
13
+ {
14
+ "start": 16.32,
15
+ "end": 19.83,
16
+ "text": "Non, je n'aime pas trop quand ça dure\n"
17
+ },
18
+ {
19
+ "start": 20.14,
20
+ "end": 22.42,
21
+ "text": "Alors je passe, je fraude, je tente\n\n"
22
+ },
23
+ {
24
+ "start": 23.92,
25
+ "end": 27.42,
26
+ "text": "Première de ma promo, j'préfère\n"
27
+ },
28
+ {
29
+ "start": 27.74,
30
+ "end": 30.39,
31
+ "text": "Derrière moi, ça grogne et ça gronde\n"
32
+ },
33
+ {
34
+ "start": 31.52,
35
+ "end": 33.59,
36
+ "text": "La haine, moi, j'en ai rien à faire\n"
37
+ },
38
+ {
39
+ "start": 35.34,
40
+ "end": 37.27,
41
+ "text": "Ils veulent juste que je leur réponde\n\n"
42
+ },
43
+ {
44
+ "start": 38.64,
45
+ "end": 42.67,
46
+ "text": "Allez, offrez-vous un peu d'rêve (un peu d'rêve)\n"
47
+ },
48
+ {
49
+ "start": 42.97,
50
+ "end": 45.95,
51
+ "text": "À tous ceux qui n'font plus de trêve\n"
52
+ },
53
+ {
54
+ "start": 46.33,
55
+ "end": 50.17,
56
+ "text": "Allez, allez, jetez-vous dans l'arène (dans l'arène)\n"
57
+ },
58
+ {
59
+ "start": 50.17,
60
+ "end": 52.71,
61
+ "text": "Le roi est mort, vive la reine\n\n"
62
+ },
63
+ {
64
+ "start": 53.68,
65
+ "end": 57.6,
66
+ "text": "(Ouh) chacun est pour l'autre le suivant\n"
67
+ },
68
+ {
69
+ "start": 58.18,
70
+ "end": 63.25,
71
+ "text": "Personne ne bouge, tout l'monde attend (ouh-ouh-ouh-ouh)\n"
72
+ },
73
+ {
74
+ "start": 62.04,
75
+ "end": 65.28,
76
+ "text": "Marchez-vous dessus, montrez les dents\n"
77
+ },
78
+ {
79
+ "start": 65.81,
80
+ "end": 67.75,
81
+ "text": "Crachez-vous dessus, l'est encore temps\n\n"
82
+ },
83
+ {
84
+ "start": 69.17,
85
+ "end": 70.13,
86
+ "text": "Allez\n"
87
+ },
88
+ {
89
+ "start": 70.98,
90
+ "end": 71.54,
91
+ "text": "Allez, allez\n"
92
+ },
93
+ {
94
+ "start": 72.86,
95
+ "end": 73.93,
96
+ "text": "Allez, allez, allez\n\n"
97
+ },
98
+ {
99
+ "start": 84.83,
100
+ "end": 87.31,
101
+ "text": "Ils s'entassent tous en silence\n"
102
+ },
103
+ {
104
+ "start": 88.66,
105
+ "end": 91.26,
106
+ "text": "Comme des tas de vers de terre\n"
107
+ },
108
+ {
109
+ "start": 92.48,
110
+ "end": 94.81,
111
+ "text": "Ils ne veulent plus croire en la science\n"
112
+ },
113
+ {
114
+ "start": 96.29,
115
+ "end": 98.2,
116
+ "text": "Ils ont toujours peur de l'enfer\n\n"
117
+ },
118
+ {
119
+ "start": 100.08,
120
+ "end": 103.51,
121
+ "text": "Ils ne connaissent pas leur chance\n"
122
+ },
123
+ {
124
+ "start": 103.87,
125
+ "end": 107.39,
126
+ "text": "D'être si à sens unique\n"
127
+ },
128
+ {
129
+ "start": 107.71,
130
+ "end": 110.81,
131
+ "text": "Jamais ils ne disent ce qu'ils pensent\n"
132
+ },
133
+ {
134
+ "start": 111.26,
135
+ "end": 114.07,
136
+ "text": "Ils écoutent bien trop la politique\n\n"
137
+ },
138
+ {
139
+ "start": 114.86,
140
+ "end": 119.02,
141
+ "text": "Allez, offrez-vous un peu d'rêve (un peu d'rêve)\n"
142
+ },
143
+ {
144
+ "start": 119.17,
145
+ "end": 122.2,
146
+ "text": "À tous ceux qui n'font plus de trêve\n"
147
+ },
148
+ {
149
+ "start": 122.5,
150
+ "end": 126.22,
151
+ "text": "Allez, allez, jetez-vous dans l'arène (dans l'arène)\n"
152
+ },
153
+ {
154
+ "start": 126.32,
155
+ "end": 129.53,
156
+ "text": "Le roi est mort, vive la reine\n\n"
157
+ },
158
+ {
159
+ "start": 129.89,
160
+ "end": 134.16,
161
+ "text": "(Ouh) chacun est pour l'autre le suivant\n"
162
+ },
163
+ {
164
+ "start": 134.4,
165
+ "end": 139.38,
166
+ "text": "Personne ne bouge, tout l'monde attend (ouh-ouh-ouh-ouh)\n"
167
+ },
168
+ {
169
+ "start": 138.19,
170
+ "end": 141.17,
171
+ "text": "Marchez-vous dessus, montrez les dents\n"
172
+ },
173
+ {
174
+ "start": 142.01,
175
+ "end": 144.02,
176
+ "text": "Crachez-vous dessus, l'est encore temps\n\n"
177
+ },
178
+ {
179
+ "start": 145.42,
180
+ "end": 148.42,
181
+ "text": "Allez, allez\n"
182
+ },
183
+ {
184
+ "start": 148.7,
185
+ "end": 153.16,
186
+ "text": "Allez, allez\n"
187
+ },
188
+ {
189
+ "start": 156.21,
190
+ "end": 156.9,
191
+ "text": "Allez, allez !\n"
192
+ },
193
+ {
194
+ "start": 158.82,
195
+ "end": 159.28,
196
+ "text": "Allez !\n\n"
197
+ },
198
+ {
199
+ "start": 160.83,
200
+ "end": 162.48,
201
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
202
+ },
203
+ {
204
+ "start": 162.59,
205
+ "end": 164.59,
206
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
207
+ },
208
+ {
209
+ "start": 164.61,
210
+ "end": 166.48,
211
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
212
+ },
213
+ {
214
+ "start": 166.5,
215
+ "end": 168.77,
216
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh (wou-ouh)\n\n"
217
+ },
218
+ {
219
+ "start": 168.44,
220
+ "end": 170.11,
221
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
222
+ },
223
+ {
224
+ "start": 170.35,
225
+ "end": 172.05,
226
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
227
+ },
228
+ {
229
+ "start": 172.23,
230
+ "end": 173.93,
231
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n"
232
+ },
233
+ {
234
+ "start": 174.13,
235
+ "end": 175.91,
236
+ "text": "Ouh-ouh, ouh-ouh-ouh-ouh\n\n"
237
+ },
238
+ {
239
+ "start": 176.1,
240
+ "end": 179.86,
241
+ "text": "(Ouh) chacun est pour l'autre le suivant\n"
242
+ },
243
+ {
244
+ "start": 180.12,
245
+ "end": 185.5,
246
+ "text": "Personne ne bouge, tout l'monde attend (ouh-ouh-ouh-ouh)\n"
247
+ },
248
+ {
249
+ "start": 183.92,
250
+ "end": 187.43,
251
+ "text": "Marchez-vous dessus, montrez les dents\n"
252
+ },
253
+ {
254
+ "start": 187.72,
255
+ "end": 189.77,
256
+ "text": "Crachez-vous dessus, l'est encore temps\n"
257
+ }
258
+ ]
259
+ }
alignment/Libre_by_CybeR_AttaCK_-_CyberAttacK.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 15.26,
5
+ "end": 16.75,
6
+ "text": "L'homme ne sera jamais libre\n"
7
+ },
8
+ {
9
+ "start": 17.94,
10
+ "end": 18.39,
11
+ "text": "(Pourquoi ?)\n\n"
12
+ },
13
+ {
14
+ "start": 22.0,
15
+ "end": 24.17,
16
+ "text": "Comme un loup que l'on assigne à résidence\n"
17
+ },
18
+ {
19
+ "start": 24.39,
20
+ "end": 26.56,
21
+ "text": "Apaisé, vulnérable, attendant providence\n"
22
+ },
23
+ {
24
+ "start": 26.79,
25
+ "end": 28.95,
26
+ "text": "Pour des aigles voraces qui ne voient que pitance\n"
27
+ },
28
+ {
29
+ "start": 29.19,
30
+ "end": 31.41,
31
+ "text": "Qui ne laisseront que l'os, voilà ma délivrance\n\n"
32
+ },
33
+ {
34
+ "start": 31.57,
35
+ "end": 33.75,
36
+ "text": "Comme un loup que l'on assigne à résidence\n"
37
+ },
38
+ {
39
+ "start": 33.98,
40
+ "end": 36.15,
41
+ "text": "Apaisé, vulnérable, attendant providence\n"
42
+ },
43
+ {
44
+ "start": 36.38,
45
+ "end": 38.47,
46
+ "text": "Pour des aigles voraces qui ne voient que pitance\n"
47
+ },
48
+ {
49
+ "start": 38.79,
50
+ "end": 40.75,
51
+ "text": "Qui ne laisseront que l'os, voilà ma délivrance\n\n"
52
+ },
53
+ {
54
+ "start": 40.45,
55
+ "end": 42.89,
56
+ "text": "L'homme est un fauve en cage, épris de liberté\n"
57
+ },
58
+ {
59
+ "start": 42.89,
60
+ "end": 45.24,
61
+ "text": "Qui ne rêve qu'à plier bagage et ne jamais se retourner\n"
62
+ },
63
+ {
64
+ "start": 45.24,
65
+ "end": 47.46,
66
+ "text": "Un chien docile et sage, statique comme une image\n"
67
+ },
68
+ {
69
+ "start": 47.68,
70
+ "end": 50.08,
71
+ "text": "Retenu en otage avec pour deal un beau mirage\n\n"
72
+ },
73
+ {
74
+ "start": 50.08,
75
+ "end": 52.7,
76
+ "text": "L'homme tient un faux langage quand il s'agit de s'exprimer\n"
77
+ },
78
+ {
79
+ "start": 52.78,
80
+ "end": 54.85,
81
+ "text": "Il contient toute sa rage avec l'envie de tout briser\n"
82
+ },
83
+ {
84
+ "start": 54.85,
85
+ "end": 57.26,
86
+ "text": "C'est la recette du succès, les agneaux ne savent pas danser\n"
87
+ },
88
+ {
89
+ "start": 57.26,
90
+ "end": 59.71,
91
+ "text": "Et les journées qui se succèdent nous en empêcheront d'y penser\n\n"
92
+ },
93
+ {
94
+ "start": 60.23,
95
+ "end": 62.58,
96
+ "text": "À ne plus nourrir ce qui est essentiel\n"
97
+ },
98
+ {
99
+ "start": 62.72,
100
+ "end": 64.89,
101
+ "text": "À mourir au nom de cette essence\n"
102
+ },
103
+ {
104
+ "start": 65.16,
105
+ "end": 67.14,
106
+ "text": "À vouloir dominer le ciel\n"
107
+ },
108
+ {
109
+ "start": 67.14,
110
+ "end": 69.88,
111
+ "text": "Il n'y a que des barreaux pour lesquels nous n'trouverons pas le sommeil\n\n"
112
+ },
113
+ {
114
+ "start": 69.96,
115
+ "end": 72.13,
116
+ "text": "Comme des papillons amputés des ailes\n"
117
+ },
118
+ {
119
+ "start": 72.24,
120
+ "end": 74.51,
121
+ "text": "Comme tous ces humains shootés au diesel\n"
122
+ },
123
+ {
124
+ "start": 74.75,
125
+ "end": 76.74,
126
+ "text": "Reproduction d'un cycle artificiel\n"
127
+ },
128
+ {
129
+ "start": 76.74,
130
+ "end": 79.3,
131
+ "text": "Il n'y a que les oiseaux qui peuvent se réveiller au sommet\n\n"
132
+ },
133
+ {
134
+ "start": 98.73,
135
+ "end": 100.9,
136
+ "text": "Comme un loup que l'on assigne à résidence\n"
137
+ },
138
+ {
139
+ "start": 101.11,
140
+ "end": 103.29,
141
+ "text": "Apaisé, vulnérable, attendant providence\n"
142
+ },
143
+ {
144
+ "start": 103.52,
145
+ "end": 105.66,
146
+ "text": "Pour des aigles voraces qui ne voient que pitance\n"
147
+ },
148
+ {
149
+ "start": 105.9,
150
+ "end": 108.16,
151
+ "text": "Qui ne laisseront que l'os, voilà ma délivrance\n\n"
152
+ },
153
+ {
154
+ "start": 108.31,
155
+ "end": 110.46,
156
+ "text": "Comme un loup que l'on assigne à résidence\n"
157
+ },
158
+ {
159
+ "start": 110.7,
160
+ "end": 112.86,
161
+ "text": "Apaisé, vulnérable, attendant providence\n"
162
+ },
163
+ {
164
+ "start": 113.08,
165
+ "end": 115.22,
166
+ "text": "Pour des aigles voraces qui ne voient que pitance\n"
167
+ },
168
+ {
169
+ "start": 115.51,
170
+ "end": 117.63,
171
+ "text": "Qui ne laisseront que l'os, voilà ma délivrance\n\n"
172
+ },
173
+ {
174
+ "start": 116.97,
175
+ "end": 119.71,
176
+ "text": "L'homme n'est plus un sage, un guide parmi les singes\n"
177
+ },
178
+ {
179
+ "start": 119.71,
180
+ "end": 122.45,
181
+ "text": "Un animal qui vibre au rythme de nombreux messages codés\n"
182
+ },
183
+ {
184
+ "start": 122.6,
185
+ "end": 124.83,
186
+ "text": "Il se prétend Messie dans un monde vicieux\n"
187
+ },
188
+ {
189
+ "start": 124.99,
190
+ "end": 127.22,
191
+ "text": "Il se sent progressé, unique quand il ferme les yeux\n\n"
192
+ },
193
+ {
194
+ "start": 126.73,
195
+ "end": 129.3,
196
+ "text": "L'homme est un solitaire actif mais paresseux\n"
197
+ },
198
+ {
199
+ "start": 129.46,
200
+ "end": 131.56,
201
+ "text": "Il adule les vipères qui se délectent de tous ces vœux\n"
202
+ },
203
+ {
204
+ "start": 131.56,
205
+ "end": 133.79,
206
+ "text": "Il envie le courage, une envie de courir\n"
207
+ },
208
+ {
209
+ "start": 133.96,
210
+ "end": 136.51,
211
+ "text": "Vers un profond sentiment de construire un monde à son image\n"
212
+ },
213
+ {
214
+ "start": 136.51,
215
+ "end": 137.0,
216
+ "text": "Alors\n\n"
217
+ },
218
+ {
219
+ "start": 137.26,
220
+ "end": 139.16,
221
+ "text": "Plus nourrir ce qui est essentiel\n"
222
+ },
223
+ {
224
+ "start": 139.39,
225
+ "end": 141.62,
226
+ "text": "À mourir au nom de cette essence\n"
227
+ },
228
+ {
229
+ "start": 141.87,
230
+ "end": 143.84,
231
+ "text": "À vouloir dominer le ciel\n"
232
+ },
233
+ {
234
+ "start": 143.84,
235
+ "end": 146.54,
236
+ "text": "Il n'y a que des barreaux pour lesquels nous n'trouverons pas le sommeil\n\n"
237
+ },
238
+ {
239
+ "start": 146.69,
240
+ "end": 148.87,
241
+ "text": "Comme des papillons amputés des ailes\n"
242
+ },
243
+ {
244
+ "start": 148.95,
245
+ "end": 151.28,
246
+ "text": "Comme tous ces humains shootés au diesel\n"
247
+ },
248
+ {
249
+ "start": 151.52,
250
+ "end": 153.45,
251
+ "text": "Reproduction d'un cycle artificiel\n"
252
+ },
253
+ {
254
+ "start": 153.45,
255
+ "end": 156.26,
256
+ "text": "Il n'y a que les oiseaux qui peuvent se réveiller au sommet\n"
257
+ }
258
+ ]
259
+ }
alignment/Lower_Loveday_-_Is_It_Right_.json ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 29.78,
5
+ "end": 35.35,
6
+ "text": "Late nights staying up, messaging you\n"
7
+ },
8
+ {
9
+ "start": 36.82,
10
+ "end": 43.15,
11
+ "text": "Can I express what I'm feeling for you without revealing truths?\n\n"
12
+ },
13
+ {
14
+ "start": 43.31,
15
+ "end": 46.51,
16
+ "text": "I've been thinking about you lately (lately)\n"
17
+ },
18
+ {
19
+ "start": 46.85,
20
+ "end": 49.94,
21
+ "text": "That's a massive understatement, baby\n"
22
+ },
23
+ {
24
+ "start": 50.37,
25
+ "end": 54.14,
26
+ "text": "I can't stop thinking about you all day and all night\n"
27
+ },
28
+ {
29
+ "start": 55.11,
30
+ "end": 56.55,
31
+ "text": "Oh, but is it right?\n\n"
32
+ },
33
+ {
34
+ "start": 58.24,
35
+ "end": 64.13,
36
+ "text": "Finally figured it out, I got my head around it\n"
37
+ },
38
+ {
39
+ "start": 65.35,
40
+ "end": 71.29,
41
+ "text": "Although I know I've got to get myself out of this habit\n"
42
+ },
43
+ {
44
+ "start": 72.76,
45
+ "end": 78.29,
46
+ "text": "Of falling for someone who's out of reach, it's unrealistic\n"
47
+ },
48
+ {
49
+ "start": 79.55,
50
+ "end": 85.19,
51
+ "text": "My dream won't become a reality, but was it meant to be?\n\n"
52
+ },
53
+ {
54
+ "start": 86.0,
55
+ "end": 89.14,
56
+ "text": "I've been thinking about you lately (lately)\n"
57
+ },
58
+ {
59
+ "start": 89.46,
60
+ "end": 92.72,
61
+ "text": "That's a massive understatement, baby\n"
62
+ },
63
+ {
64
+ "start": 93.05,
65
+ "end": 96.9,
66
+ "text": "'Cause I'm thinking about you all day and all night\n"
67
+ },
68
+ {
69
+ "start": 97.74,
70
+ "end": 99.46,
71
+ "text": "Oh, but is it right?\n\n"
72
+ },
73
+ {
74
+ "start": 101.13,
75
+ "end": 106.93,
76
+ "text": "I don't know but I, I know how it feels to me\n"
77
+ },
78
+ {
79
+ "start": 107.62,
80
+ "end": 113.46,
81
+ "text": "Maybe you're just playing games, a game I don't wanna play\n"
82
+ },
83
+ {
84
+ "start": 114.67,
85
+ "end": 121.17,
86
+ "text": "I don't know but I, I know how it feels to me\n"
87
+ },
88
+ {
89
+ "start": 121.92,
90
+ "end": 128.28,
91
+ "text": "Maybe you're just playing games, a game I don't wanna play\n\n"
92
+ },
93
+ {
94
+ "start": 142.87,
95
+ "end": 146.02,
96
+ "text": "I've been thinking about you lately (lately)\n"
97
+ },
98
+ {
99
+ "start": 146.35,
100
+ "end": 149.63,
101
+ "text": "That's a massive understatement, baby\n"
102
+ },
103
+ {
104
+ "start": 149.96,
105
+ "end": 153.79,
106
+ "text": "'Cause I'm thinking about you all day and all night\n"
107
+ },
108
+ {
109
+ "start": 154.44,
110
+ "end": 156.32,
111
+ "text": "Oh, but is it right?\n\n"
112
+ },
113
+ {
114
+ "start": 157.09,
115
+ "end": 160.2,
116
+ "text": "I've been thinking about you lately (lately)\n"
117
+ },
118
+ {
119
+ "start": 160.69,
120
+ "end": 163.87,
121
+ "text": "That's a massive understatement, baby\n"
122
+ },
123
+ {
124
+ "start": 164.16,
125
+ "end": 168.16,
126
+ "text": "'Cause I'm thinking about you all day and all night\n"
127
+ },
128
+ {
129
+ "start": 168.65,
130
+ "end": 170.4,
131
+ "text": "Oh, but is it right?\n"
132
+ }
133
+ ]
134
+ }
alignment/Mes_Larmes_-_kobzx2z.json ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 10.57,
5
+ "end": 14.56,
6
+ "text": "Ah, na-na-na, na-na\n\n"
7
+ },
8
+ {
9
+ "start": 14.7,
10
+ "end": 16.47,
11
+ "text": "J'vois pas l'intérêt qu'on s'capte dans la rue\n"
12
+ },
13
+ {
14
+ "start": 16.47,
15
+ "end": 19.15,
16
+ "text": "Si t'es déjà dans ma tête (ah)\n"
17
+ },
18
+ {
19
+ "start": 18.19,
20
+ "end": 19.45,
21
+ "text": "J'connais le vice et la ruse\n"
22
+ },
23
+ {
24
+ "start": 19.52,
25
+ "end": 23.02,
26
+ "text": "Moi, j'voyais personne quand j'avais besoin d'aide (ah)\n\n"
27
+ },
28
+ {
29
+ "start": 22.06,
30
+ "end": 23.37,
31
+ "text": "Tu mets d'la haine dans ce cœur\n"
32
+ },
33
+ {
34
+ "start": 23.37,
35
+ "end": 24.23,
36
+ "text": "J'en remets dans l'cup\n"
37
+ },
38
+ {
39
+ "start": 24.35,
40
+ "end": 29.23,
41
+ "text": "Plus rien n'peut m'éclaircir (ah)\n"
42
+ },
43
+ {
44
+ "start": 25.78,
45
+ "end": 27.19,
46
+ "text": "J'ai mis des pansements sur nos peurs\n"
47
+ },
48
+ {
49
+ "start": 27.19,
50
+ "end": 28.14,
51
+ "text": "Mais pas sur nos pleurs\n"
52
+ },
53
+ {
54
+ "start": 28.22,
55
+ "end": 29.52,
56
+ "text": "Comment puis-je m'investir\n\n"
57
+ },
58
+ {
59
+ "start": 29.61,
60
+ "end": 31.2,
61
+ "text": "Et j'fais une prière à l'éternel\n"
62
+ },
63
+ {
64
+ "start": 31.2,
65
+ "end": 34.87,
66
+ "text": "J'ai eu plus d'un tetrai dans la vie (ah)\n"
67
+ },
68
+ {
69
+ "start": 33.58,
70
+ "end": 34.98,
71
+ "text": "Toi t'était là l'année dernière\n"
72
+ },
73
+ {
74
+ "start": 34.98,
75
+ "end": 38.85,
76
+ "text": "Cette année qui va me souhaiter mon anniv' (ah) ?\n\n"
77
+ },
78
+ {
79
+ "start": 37.4,
80
+ "end": 38.72,
81
+ "text": "Tu mets d'la haine dans ce cœur\n"
82
+ },
83
+ {
84
+ "start": 38.72,
85
+ "end": 39.54,
86
+ "text": "J'en remets dans l'cup\n"
87
+ },
88
+ {
89
+ "start": 39.64,
90
+ "end": 41.78,
91
+ "text": "Plus rien n'peut m'éclaircir (ah)\n"
92
+ },
93
+ {
94
+ "start": 41.18,
95
+ "end": 43.46,
96
+ "text": "J'ai mis des pansements sur nos peurs (sur nos peurs)\n"
97
+ },
98
+ {
99
+ "start": 43.55,
100
+ "end": 44.73,
101
+ "text": "Comment puis-je m'investir ?\n\n"
102
+ },
103
+ {
104
+ "start": 44.89,
105
+ "end": 48.57,
106
+ "text": "Et qui effacera mes larmes ?\n"
107
+ },
108
+ {
109
+ "start": 49.41,
110
+ "end": 51.06,
111
+ "text": "J'suis bon qu'à effriter\n"
112
+ },
113
+ {
114
+ "start": 51.3,
115
+ "end": 53.06,
116
+ "text": "J'fais du cash everyday\n"
117
+ },
118
+ {
119
+ "start": 52.57,
120
+ "end": 56.26,
121
+ "text": "Et qui effacera mes larmes ?\n"
122
+ },
123
+ {
124
+ "start": 57.08,
125
+ "end": 58.77,
126
+ "text": "J'suis bon qu'à effriter\n"
127
+ },
128
+ {
129
+ "start": 58.98,
130
+ "end": 60.74,
131
+ "text": "J'fais du cash everyday\n"
132
+ },
133
+ {
134
+ "start": 60.83,
135
+ "end": 62.06,
136
+ "text": "Les larmes et la haine\n"
137
+ },
138
+ {
139
+ "start": 62.72,
140
+ "end": 63.93,
141
+ "text": "Des larmes et la pénombre\n"
142
+ },
143
+ {
144
+ "start": 64.59,
145
+ "end": 65.85,
146
+ "text": "J'veux zapper son prénom\n"
147
+ },
148
+ {
149
+ "start": 66.49,
150
+ "end": 67.77,
151
+ "text": "J'veux zapper son prénom\n"
152
+ },
153
+ {
154
+ "start": 67.65,
155
+ "end": 69.72,
156
+ "text": "Les larmes et la haine\n"
157
+ },
158
+ {
159
+ "start": 70.38,
160
+ "end": 71.64,
161
+ "text": "Des larmes et la pénombre\n"
162
+ },
163
+ {
164
+ "start": 72.26,
165
+ "end": 73.54,
166
+ "text": "J'veux zapper son prénom\n"
167
+ },
168
+ {
169
+ "start": 74.14,
170
+ "end": 75.43,
171
+ "text": "J'veux zapper son prénom\n\n"
172
+ },
173
+ {
174
+ "start": 75.64,
175
+ "end": 77.01,
176
+ "text": "Encore khabat dans la ville\n"
177
+ },
178
+ {
179
+ "start": 77.06,
180
+ "end": 80.78,
181
+ "text": "J'te vois dans la nuit, t'a éteint cette flamme (ah)\n"
182
+ },
183
+ {
184
+ "start": 79.5,
185
+ "end": 80.83,
186
+ "text": "Mais des mecs comme moi, y en a mille\n"
187
+ },
188
+ {
189
+ "start": 80.9,
190
+ "end": 81.68,
191
+ "text": "Pas d'frères, pas d'amies\n"
192
+ },
193
+ {
194
+ "start": 81.68,
195
+ "end": 84.83,
196
+ "text": "La vie j'vois qu'cette femme (ah)\n"
197
+ },
198
+ {
199
+ "start": 83.53,
200
+ "end": 85.54,
201
+ "text": "Autour de moi que la misère\n"
202
+ },
203
+ {
204
+ "start": 85.54,
205
+ "end": 87.07,
206
+ "text": "Trop de questions, trop de mystère (ah)\n"
207
+ },
208
+ {
209
+ "start": 87.3,
210
+ "end": 88.57,
211
+ "text": "Ils m'demandent pourquoi j'suis sad\n"
212
+ },
213
+ {
214
+ "start": 88.65,
215
+ "end": 89.6,
216
+ "text": "Mon cœur il est sale\n"
217
+ },
218
+ {
219
+ "start": 89.6,
220
+ "end": 91.13,
221
+ "text": "On finit par s'y faire\n\n"
222
+ },
223
+ {
224
+ "start": 92.62,
225
+ "end": 94.23,
226
+ "text": "J'regarde la lune\n"
227
+ },
228
+ {
229
+ "start": 94.51,
230
+ "end": 96.08,
231
+ "text": "J'prends somnifère\n"
232
+ },
233
+ {
234
+ "start": 96.48,
235
+ "end": 97.93,
236
+ "text": "Seul quand j'm'allume\n"
237
+ },
238
+ {
239
+ "start": 98.35,
240
+ "end": 99.9,
241
+ "text": "Seul tout l'hiver\n"
242
+ },
243
+ {
244
+ "start": 100.39,
245
+ "end": 103.71,
246
+ "text": "Ils rêvent de tout ce qu'ils n'ont pas\n"
247
+ },
248
+ {
249
+ "start": 104.09,
250
+ "end": 108.27,
251
+ "text": "Seul dans la nuit, tu m'réponds pas ('ponds pas, 'ponds pas)\n\n"
252
+ },
253
+ {
254
+ "start": 108.27,
255
+ "end": 111.9,
256
+ "text": "Et qui effacera mes larmes ?\n"
257
+ },
258
+ {
259
+ "start": 112.75,
260
+ "end": 114.43,
261
+ "text": "J'suis bon qu'à effriter\n"
262
+ },
263
+ {
264
+ "start": 114.66,
265
+ "end": 116.5,
266
+ "text": "J'fais du cash everyday\n"
267
+ },
268
+ {
269
+ "start": 115.92,
270
+ "end": 119.51,
271
+ "text": "Et qui effacera mes larmes ?\n"
272
+ },
273
+ {
274
+ "start": 120.44,
275
+ "end": 122.13,
276
+ "text": "J'suis bon qu'à effriter\n"
277
+ },
278
+ {
279
+ "start": 122.35,
280
+ "end": 124.11,
281
+ "text": "J'fais du cash everyday\n"
282
+ },
283
+ {
284
+ "start": 124.17,
285
+ "end": 125.43,
286
+ "text": "Les larmes et la haine\n"
287
+ },
288
+ {
289
+ "start": 126.08,
290
+ "end": 127.27,
291
+ "text": "Des larmes et la pénombre\n"
292
+ },
293
+ {
294
+ "start": 127.95,
295
+ "end": 129.22,
296
+ "text": "J'veux zapper son prénom\n"
297
+ },
298
+ {
299
+ "start": 129.84,
300
+ "end": 131.09,
301
+ "text": "J'veux zapper son prénom\n"
302
+ },
303
+ {
304
+ "start": 131.75,
305
+ "end": 132.96,
306
+ "text": "Les larmes et la haine\n"
307
+ },
308
+ {
309
+ "start": 133.73,
310
+ "end": 134.92,
311
+ "text": "Des larmes et la pénombre\n"
312
+ },
313
+ {
314
+ "start": 135.6,
315
+ "end": 136.84,
316
+ "text": "J'veux zapper son prénom\n"
317
+ },
318
+ {
319
+ "start": 137.49,
320
+ "end": 138.78,
321
+ "text": "J'veux zapper son prénom\n"
322
+ },
323
+ {
324
+ "start": 139.4,
325
+ "end": 140.66,
326
+ "text": "J'veux zapper son prénom\n"
327
+ }
328
+ ]
329
+ }
alignment/Moon_I_Mean_-_Wrong_Concept.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 13.14,
5
+ "end": 14.51,
6
+ "text": "Maybe you hate me\n"
7
+ },
8
+ {
9
+ "start": 15.8,
10
+ "end": 18.92,
11
+ "text": "But you dress somebody's suit\n"
12
+ },
13
+ {
14
+ "start": 19.18,
15
+ "end": 21.11,
16
+ "text": "Because there's no risk\n"
17
+ },
18
+ {
19
+ "start": 22.22,
20
+ "end": 23.42,
21
+ "text": "To put on a mask\n"
22
+ },
23
+ {
24
+ "start": 25.47,
25
+ "end": 31.03,
26
+ "text": "When we get scared to live\n"
27
+ },
28
+ {
29
+ "start": 32.02,
30
+ "end": 38.39,
31
+ "text": "With our back, with our back\n\n"
32
+ },
33
+ {
34
+ "start": 39.08,
35
+ "end": 40.5,
36
+ "text": "Maybe you love me\n"
37
+ },
38
+ {
39
+ "start": 41.73,
40
+ "end": 45.02,
41
+ "text": "But you run under the sun and me under the rain\n"
42
+ },
43
+ {
44
+ "start": 45.02,
45
+ "end": 47.56,
46
+ "text": "It's so easy\n"
47
+ },
48
+ {
49
+ "start": 48.17,
50
+ "end": 50.35,
51
+ "text": "To lose ourselves\n"
52
+ },
53
+ {
54
+ "start": 51.42,
55
+ "end": 57.75,
56
+ "text": "When we get scared to love (ooh, ooh)\n"
57
+ },
58
+ {
59
+ "start": 57.97,
60
+ "end": 63.79,
61
+ "text": "With every tear, with every fear\n\n"
62
+ },
63
+ {
64
+ "start": 64.36,
65
+ "end": 67.25,
66
+ "text": "But you could give me just your money\n"
67
+ },
68
+ {
69
+ "start": 67.68,
70
+ "end": 70.69,
71
+ "text": "But I wished just your honey\n"
72
+ },
73
+ {
74
+ "start": 70.71,
75
+ "end": 73.74,
76
+ "text": "Burnt your t-shirt, that one with bunny\n"
77
+ },
78
+ {
79
+ "start": 74.12,
80
+ "end": 78.66,
81
+ "text": "And now about you nothing more of funny\n\n"
82
+ },
83
+ {
84
+ "start": 84.51,
85
+ "end": 86.47,
86
+ "text": "Maybe we'll meet again\n"
87
+ },
88
+ {
89
+ "start": 87.1,
90
+ "end": 90.45,
91
+ "text": "But this not the right life for us\n"
92
+ },
93
+ {
94
+ "start": 90.45,
95
+ "end": 93.05,
96
+ "text": "It's so hard\n"
97
+ },
98
+ {
99
+ "start": 93.62,
100
+ "end": 95.14,
101
+ "text": "To live our love\n"
102
+ },
103
+ {
104
+ "start": 96.83,
105
+ "end": 103.15,
106
+ "text": "When we get scared to see (ooh, ooh)\n"
107
+ },
108
+ {
109
+ "start": 103.4,
110
+ "end": 109.16,
111
+ "text": "Inside our soul, inside our soul\n\n"
112
+ },
113
+ {
114
+ "start": 109.84,
115
+ "end": 112.82,
116
+ "text": "But you could give me just your money\n"
117
+ },
118
+ {
119
+ "start": 113.15,
120
+ "end": 116.0,
121
+ "text": "But I wished just your honey\n"
122
+ },
123
+ {
124
+ "start": 116.13,
125
+ "end": 119.36,
126
+ "text": "Burnt your t-shirt, that one with bunny\n"
127
+ },
128
+ {
129
+ "start": 119.58,
130
+ "end": 123.26,
131
+ "text": "And now about you nothing more of funny\n\n"
132
+ },
133
+ {
134
+ "start": 123.26,
135
+ "end": 126.06,
136
+ "text": "Your mind is closed like an aquarium\n"
137
+ },
138
+ {
139
+ "start": 126.06,
140
+ "end": 129.52,
141
+ "text": "Mine completely opened like the Colosseum\n"
142
+ },
143
+ {
144
+ "start": 129.59,
145
+ "end": 135.78,
146
+ "text": "So nothing about idyll between us\n"
147
+ },
148
+ {
149
+ "start": 135.79,
150
+ "end": 138.11,
151
+ "text": "It's not a wrong accent\n"
152
+ },
153
+ {
154
+ "start": 138.15,
155
+ "end": 141.13,
156
+ "text": "No, no, no, no, no, no, no, no\n"
157
+ },
158
+ {
159
+ "start": 141.46,
160
+ "end": 145.14,
161
+ "text": "What's wrong is the concept\n"
162
+ },
163
+ {
164
+ "start": 145.5,
165
+ "end": 148.69,
166
+ "text": "Wrong concept to love\n\n"
167
+ },
168
+ {
169
+ "start": 148.69,
170
+ "end": 151.84,
171
+ "text": "But you could give me just your money\n"
172
+ },
173
+ {
174
+ "start": 152.03,
175
+ "end": 154.95,
176
+ "text": "But I wished just your honey\n"
177
+ },
178
+ {
179
+ "start": 155.08,
180
+ "end": 158.27,
181
+ "text": "Burnt your t-shirt, that one with bunny\n"
182
+ },
183
+ {
184
+ "start": 158.5,
185
+ "end": 162.01,
186
+ "text": "And now about you nothing more of funny\n\n"
187
+ },
188
+ {
189
+ "start": 162.01,
190
+ "end": 164.59,
191
+ "text": "You could give me just your money\n"
192
+ },
193
+ {
194
+ "start": 165.02,
195
+ "end": 167.8,
196
+ "text": "But I wished just your honey\n"
197
+ },
198
+ {
199
+ "start": 167.95,
200
+ "end": 171.31,
201
+ "text": "Burnt your t-shirt, that one with bunny\n"
202
+ },
203
+ {
204
+ "start": 171.44,
205
+ "end": 177.79,
206
+ "text": "And now about you nothing more of funny\n\n"
207
+ },
208
+ {
209
+ "start": 178.01,
210
+ "end": 179.66,
211
+ "text": "Wrong concept\n"
212
+ },
213
+ {
214
+ "start": 181.21,
215
+ "end": 183.88,
216
+ "text": "Wrong concept to love\n"
217
+ },
218
+ {
219
+ "start": 184.47,
220
+ "end": 192.83,
221
+ "text": "Wrong concept\n"
222
+ },
223
+ {
224
+ "start": 194.14,
225
+ "end": 195.17,
226
+ "text": "To love\n"
227
+ },
228
+ {
229
+ "start": 195.75,
230
+ "end": 196.74,
231
+ "text": "To love\n"
232
+ },
233
+ {
234
+ "start": 197.46,
235
+ "end": 200.02,
236
+ "text": "Wrong concept\n"
237
+ }
238
+ ]
239
+ }
alignment/Musik_-_Heiko.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 28.03,
5
+ "end": 33.77,
6
+ "text": "Die Welt um mich herum bewegt sich stetig\n"
7
+ },
8
+ {
9
+ "start": 35.29,
10
+ "end": 39.56,
11
+ "text": "Alles rauscht nur so an mir vorbei\n"
12
+ },
13
+ {
14
+ "start": 42.48,
15
+ "end": 49.36,
16
+ "text": "Sehe alles nur verschleiert, scheint so weit weg doch ist es hier\n"
17
+ },
18
+ {
19
+ "start": 50.22,
20
+ "end": 53.66,
21
+ "text": "Ich fühle mich hypnotisiert\n\n"
22
+ },
23
+ {
24
+ "start": 57.53,
25
+ "end": 64.38,
26
+ "text": "Und von weit entfernt hör ich ein Geräusch\n"
27
+ },
28
+ {
29
+ "start": 64.81,
30
+ "end": 70.53,
31
+ "text": "Ein zarter Klang, der mein Herz erfreut\n\n"
32
+ },
33
+ {
34
+ "start": 70.58,
35
+ "end": 74.07,
36
+ "text": "Musik, du bist zurück\n"
37
+ },
38
+ {
39
+ "start": 74.61,
40
+ "end": 77.7,
41
+ "text": "Um mich mit Liebe aufzufüllen\n"
42
+ },
43
+ {
44
+ "start": 78.29,
45
+ "end": 84.67,
46
+ "text": "Um meine Seele zu berühr'n\n"
47
+ },
48
+ {
49
+ "start": 85.51,
50
+ "end": 89.17,
51
+ "text": "Sind die Depressionen auch noch so groß\n"
52
+ },
53
+ {
54
+ "start": 89.54,
55
+ "end": 92.87,
56
+ "text": "Holst du mich immer wieder raus\n"
57
+ },
58
+ {
59
+ "start": 93.39,
60
+ "end": 99.92,
61
+ "text": "Gibst mir Mut und Kraft für jeden neuen Tag\n"
62
+ },
63
+ {
64
+ "start": 100.47,
65
+ "end": 103.49,
66
+ "text": "Wär' ich taub oder wär' ich stumm\n"
67
+ },
68
+ {
69
+ "start": 104.04,
70
+ "end": 107.66,
71
+ "text": "Hätte ich all diese Lieder nie gesung'\n"
72
+ },
73
+ {
74
+ "start": 108.07,
75
+ "end": 115.18,
76
+ "text": "Hätte ich nicht mal gewusst, wie mir jetzt geschieht\n"
77
+ },
78
+ {
79
+ "start": 115.66,
80
+ "end": 119.27,
81
+ "text": "Musik, du bist zurück\n"
82
+ },
83
+ {
84
+ "start": 119.71,
85
+ "end": 123.18,
86
+ "text": "Um mich mit Liebe aufzufüllen\n"
87
+ },
88
+ {
89
+ "start": 123.45,
90
+ "end": 132.26,
91
+ "text": "Um meine Seele zu berühr'n\n\n"
92
+ },
93
+ {
94
+ "start": 161.15,
95
+ "end": 167.09,
96
+ "text": "Die Erde kreist und kreist, sie dreht sich ewig\n"
97
+ },
98
+ {
99
+ "start": 169.2,
100
+ "end": 173.23,
101
+ "text": "Alles kommt und zieht vorbei\n"
102
+ },
103
+ {
104
+ "start": 176.14,
105
+ "end": 182.84,
106
+ "text": "Suche Ordnung in dem Chaos, suche Frieden in dem Krieg\n"
107
+ },
108
+ {
109
+ "start": 183.75,
110
+ "end": 187.57,
111
+ "text": "Und wunder mich, warums nicht geht\n\n"
112
+ },
113
+ {
114
+ "start": 191.02,
115
+ "end": 197.71,
116
+ "text": "Und von weit entfernt hör ich ein Geräusch\n"
117
+ },
118
+ {
119
+ "start": 198.34,
120
+ "end": 204.14,
121
+ "text": "Ein zarter Klang, der mein Herz erfreut\n\n"
122
+ },
123
+ {
124
+ "start": 204.14,
125
+ "end": 207.59,
126
+ "text": "Musik, du bist zurück\n"
127
+ },
128
+ {
129
+ "start": 208.09,
130
+ "end": 211.28,
131
+ "text": "Um mich mit Liebe aufzufüllen\n"
132
+ },
133
+ {
134
+ "start": 211.75,
135
+ "end": 218.34,
136
+ "text": "Um meine Seele zu berühr'n\n"
137
+ },
138
+ {
139
+ "start": 218.88,
140
+ "end": 222.48,
141
+ "text": "Sind die Depression auch noch so groß\n"
142
+ },
143
+ {
144
+ "start": 222.85,
145
+ "end": 226.32,
146
+ "text": "Holst du mich immer wieder raus\n"
147
+ },
148
+ {
149
+ "start": 226.77,
150
+ "end": 233.0,
151
+ "text": "Gibst mir Mut und Kraft für jeden neuen Tag\n"
152
+ },
153
+ {
154
+ "start": 233.7,
155
+ "end": 237.01,
156
+ "text": "Wär' ich taub oder wär' ich stumm\n"
157
+ },
158
+ {
159
+ "start": 237.32,
160
+ "end": 240.76,
161
+ "text": "Hätte ich all diese Lieder nie gesung'\n"
162
+ },
163
+ {
164
+ "start": 241.16,
165
+ "end": 248.1,
166
+ "text": "Hätte ich nicht mal gewusst, wie mir jetzt geschieht\n"
167
+ },
168
+ {
169
+ "start": 248.6,
170
+ "end": 251.97,
171
+ "text": "Musik, du bist zurück\n"
172
+ },
173
+ {
174
+ "start": 252.58,
175
+ "end": 255.94,
176
+ "text": "Um mich mit Liebe aufzufüllen\n"
177
+ },
178
+ {
179
+ "start": 256.3,
180
+ "end": 264.56,
181
+ "text": "Um meine Seele zu berühr'n\n"
182
+ }
183
+ ]
184
+ }
alignment/Mère_nature_-_Law'.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lines": [
3
+ {
4
+ "start": 18.28,
5
+ "end": 22.09,
6
+ "text": "La terre est ma plus jeune enfant\n"
7
+ },
8
+ {
9
+ "start": 22.65,
10
+ "end": 26.19,
11
+ "text": "Je suis la mère de tous les océans\n"
12
+ },
13
+ {
14
+ "start": 27.03,
15
+ "end": 30.65,
16
+ "text": "Quand je m'énerve, deux ou trois volcans\n"
17
+ },
18
+ {
19
+ "start": 31.33,
20
+ "end": 35.28,
21
+ "text": "Un petit déluge et un tremblement\n\n"
22
+ },
23
+ {
24
+ "start": 35.76,
25
+ "end": 39.81,
26
+ "text": "Je n'peux pas dire que la vie m'est dure\n"
27
+ },
28
+ {
29
+ "start": 40.11,
30
+ "end": 44.15,
31
+ "text": "J'vais pas te faire une gueule d'atmosphère\n\n"
32
+ },
33
+ {
34
+ "start": 45.58,
35
+ "end": 49.75,
36
+ "text": "Je suis là, je suis la mère nature\n"
37
+ },
38
+ {
39
+ "start": 49.91,
40
+ "end": 54.28,
41
+ "text": "J'en suis là, je suis la terre mature\n"
42
+ },
43
+ {
44
+ "start": 54.28,
45
+ "end": 58.64,
46
+ "text": "Je n'suis pas de bon augure, c'est sûr\n"
47
+ },
48
+ {
49
+ "start": 58.64,
50
+ "end": 64.7,
51
+ "text": "J'en suis las de toute ta pourriture\n\n"
52
+ },
53
+ {
54
+ "start": 66.32,
55
+ "end": 69.86,
56
+ "text": "J'ai bien envie de me couler un bain\n"
57
+ },
58
+ {
59
+ "start": 70.66,
60
+ "end": 74.16,
61
+ "text": "Prends ta combi', ton masque et tuba\n"
62
+ },
63
+ {
64
+ "start": 75.03,
65
+ "end": 78.37,
66
+ "text": "Après, j'irai me dorer la pilule\n"
67
+ },
68
+ {
69
+ "start": 79.37,
70
+ "end": 83.37,
71
+ "text": "Prends tes lunettes, ta casquette et ton pull\n\n"
72
+ },
73
+ {
74
+ "start": 83.77,
75
+ "end": 87.33,
76
+ "text": "Des fois que je change d'avis\n"
77
+ },
78
+ {
79
+ "start": 88.11,
80
+ "end": 92.6,
81
+ "text": "J'prévois jamais toutes mes envies\n\n"
82
+ },
83
+ {
84
+ "start": 93.56,
85
+ "end": 97.79,
86
+ "text": "Je suis là, je suis la mère nature\n"
87
+ },
88
+ {
89
+ "start": 97.9,
90
+ "end": 102.28,
91
+ "text": "J'en suis là, je suis la terre mature\n"
92
+ },
93
+ {
94
+ "start": 102.28,
95
+ "end": 106.49,
96
+ "text": "Je n'suis pas de bon augure, c'est sûr\n"
97
+ },
98
+ {
99
+ "start": 106.62,
100
+ "end": 113.07,
101
+ "text": "J'en suis las de toute ta pourriture\n\n"
102
+ },
103
+ {
104
+ "start": 114.34,
105
+ "end": 117.84,
106
+ "text": "J'aime trop la vie pour te laisser mourir\n"
107
+ },
108
+ {
109
+ "start": 118.64,
110
+ "end": 122.54,
111
+ "text": "J'aime trop la mort pour te laisser sourire\n"
112
+ },
113
+ {
114
+ "start": 123.05,
115
+ "end": 126.44,
116
+ "text": "Même si je te le laisse celui-là\n"
117
+ },
118
+ {
119
+ "start": 127.37,
120
+ "end": 131.73,
121
+ "text": "Fais attention à celui qui va là\n\n"
122
+ },
123
+ {
124
+ "start": 132.82,
125
+ "end": 137.18,
126
+ "text": "Je suis là, je suis la mère nature\n"
127
+ },
128
+ {
129
+ "start": 137.18,
130
+ "end": 141.44,
131
+ "text": "J'en suis là, je suis la terre mature\n"
132
+ },
133
+ {
134
+ "start": 141.58,
135
+ "end": 145.94,
136
+ "text": "Je n'suis pas de bon augure, c'est sûr\n"
137
+ },
138
+ {
139
+ "start": 145.94,
140
+ "end": 150.29,
141
+ "text": "J'en suis las de toute ta pourriture\n\n"
142
+ },
143
+ {
144
+ "start": 150.29,
145
+ "end": 154.48,
146
+ "text": "Je suis là, je suis la mère mature\n"
147
+ },
148
+ {
149
+ "start": 154.65,
150
+ "end": 158.88,
151
+ "text": "J'en suis là, j'essuie ta pourriture\n"
152
+ },
153
+ {
154
+ "start": 159.02,
155
+ "end": 163.25,
156
+ "text": "J'y suis là, j'efface tes ratures\n"
157
+ },
158
+ {
159
+ "start": 163.38,
160
+ "end": 169.89,
161
+ "text": "Je suis las d'être ta mère nature\n\n"
162
+ },
163
+ {
164
+ "start": 204.82,
165
+ "end": 209.03,
166
+ "text": "Je suis la mère nature\n"
167
+ },
168
+ {
169
+ "start": 209.18,
170
+ "end": 213.57,
171
+ "text": "Tu es ma pourriture\n"
172
+ },
173
+ {
174
+ "start": 213.57,
175
+ "end": 217.74,
176
+ "text": "Je suis la mère nature\n"
177
+ },
178
+ {
179
+ "start": 217.92,
180
+ "end": 222.68,
181
+ "text": "Tu es ma pourriture\n"
182
+ }
183
+ ]
184
+ }