Views
No views yet
voice: ta)| File | Purpose |
|---|---|
ta_IN-rasa_female-medium.onnx | Voice model weights |
ta_IN-rasa_female-medium.onnx.json | Voice config (phoneme map, inference params) |
sample.wav | Demo synthesis (see "Sample sentence" below) |
pip install piper-tts1echo "வணக்கம், இது தமிழ் குரல் மாதிரி." \
2 | piper -m ta_IN-rasa_female-medium.onnx -f out.wav1from piper import PiperVoice
2import wave
3
4voice = PiperVoice.load("ta_IN-rasa_female-medium.onnx")
5with wave.open("out.wav", "wb") as wav:
6 voice.synthesize("வணக்கம், இது தமிழ் குரல் மாதிரி.", wav)வணக்கம், இது பைப்பர் தமிழ் மாதிரிகளின் ஒப்பீட்டு சோதனை. இந்த வாக்கியம் ஒவ்வொரு குரல் மாதிரியிலும் ஒரே மாதிரியாக உருவாக்கப்படுகிறது.
1@inproceedings{ai4bharat2024rasa,
2 author = {Praveen Srinivasa Varadhan and Ashwin Sankar and Giri Raju and Mitesh M. Khapra},
3 title = {{Rasa: Building Expressive Speech Synthesis Systems for Indian Languages in Low-resource Settings}},
4 booktitle = {Proc. INTERSPEECH 2024},
5 year = {2024}
6}