Malay-TTS-Yasmin / README.md
aminh's picture
add parliament tts
eef6486
# Malay-TTS-Yasmin
All notebooks and code related at https://github.com/huseinzol05/malaya-speech/tree/master/data/azure-tts
## Attributes
### Wiki and News
- 24000 sample rate, super clean.
- narrator `ms-MY-YasminNeural`.
- approximate 99.4 hours.
- Texts from Malay Wikipedia and News.
- Sentences between 2 words and 20 words.
### Parliament
- 24000 sample rate, super clean.
- narrator `ms-MY-YasminNeural`.
- approximate 142 hours.
- Texts from Malaysia Malay Parliament.
- Sentences between 2 words and 25 words.
## how-to
### Wiki and News
1. Download [populated-text.json](populated-text.json) and [tts-malay-yasmin.tar.gz](tts-malay-yasmin.tar.gz).
2. To get wav and transcript,
```python
import json
import soundfile as sf
with open('populated-text.json') as fopen:
texts = json.load(fopen)
index = 0
text = texts[index]
y, sr = sf.read('female/{index}.wav')
```
### Parliament
1. Download [populated-parliament.json](populated-parliament.json) and [tts-malay-yasmin-parliament.tar.gz](tts-malay-yasmin-parliament.tar.gz).
2. To get wav and transcript,
```python
import json
import soundfile as sf
with open('populated-parliament.json') as fopen:
texts = json.load(fopen)
index = 0
text = texts[index]
y, sr = sf.read('female-parliament/{index}.wav')
```