Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- text-to-speech
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
pretty_name: bg3
|
| 7 |
+
size_categories:
|
| 8 |
+
- 100K<n<1M
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
Voicelines extracted from BG3
|
| 12 |
+
|
| 13 |
+
You'll find the code for reproducing it in the files.
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
Untar the audio files (`tar xvf bg3.tar.gz`)
|
| 17 |
+
|
| 18 |
+
The metadata looks like this usually;
|
| 19 |
+
```json
|
| 20 |
+
{
|
| 21 |
+
"name": "v4316b95f66244601bcebbdddb8e0ba62_h0ad754d9gc97eg4fe9g9ae3gc0c2a2b3668c.wem.wav",
|
| 22 |
+
"text": "A table somewhere. For one.",
|
| 23 |
+
"spk_id": "v4316b95f66244601bcebbdddb8e0ba62",
|
| 24 |
+
"is_effect": false,
|
| 25 |
+
"samplerate": 48000,
|
| 26 |
+
"duration": 2.7868958333333333,
|
| 27 |
+
"n_channels": 1
|
| 28 |
+
}
|
| 29 |
+
```
|
| 30 |
+
but might also have those.
|
| 31 |
+
```json
|
| 32 |
+
{
|
| 33 |
+
"name": "vaa0a8ffc4ab34aae82166d61f1619fdc_h843a4ee4g144ag48d8g8f99g32f357d736d5.wem.wav",
|
| 34 |
+
"text": "<i>Deaddeaddead.</i>",
|
| 35 |
+
"spk_id": "vaa0a8ffc4ab34aae82166d61f1619fdc",
|
| 36 |
+
"is_effect": false,
|
| 37 |
+
"samplerate": 48000,
|
| 38 |
+
"duration": 1.313375,
|
| 39 |
+
"n_channels": 1
|
| 40 |
+
}
|
| 41 |
+
```
|
| 42 |
+
There are also some voice effects.
|
| 43 |
+
```json
|
| 44 |
+
{
|
| 45 |
+
"name": "v3ed74f063c6042dc83f6f034cb47c679_he1904e3fg0dfag47c1gbaa2g43752a0a229b.wem.wav",
|
| 46 |
+
"text": "Closed Mouth Effort v12",
|
| 47 |
+
"spk_id": "v3ed74f063c6042dc83f6f034cb47c679",
|
| 48 |
+
"is_effect": true,
|
| 49 |
+
"samplerate": 48000,
|
| 50 |
+
"duration": 0.3889375,
|
| 51 |
+
"n_channels": 1
|
| 52 |
+
}
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
Warning: some files have 2 channels, do not assume they're all mono.
|