Spaces:
Running
Running
File size: 1,412 Bytes
cd75eda aa0196c e89bb30 aa0196c cd75eda f4d29b7 daea792 cd75eda acbc346 3f2e911 630394d cd75eda e89bb30 cd75eda e89bb30 cd75eda e89bb30 cd75eda fe213ca e89bb30 926a62f ba54530 fd46c98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
from vietTTS.hifigan.mel2wave import mel2wave
from vietTTS.nat.text2mel import text2mel
from vietTTS import nat_normalize_text
import numpy as np
import gradio as gr
import os
def text_to_speech(text):
# prevent too long text
if len(text) > 500:
text = text[:500]
text = nat_normalize_text(text)
mel = text2mel(
text,
"lexicon.txt",
0.2,
"acoustic_ckpt_latest.pickle",
"duration_ckpt_latest.pickle",
)
wave = mel2wave(mel, "config.json", "hk_hifi.pickle")
return (wave * (2**15)).astype(np.int16)
def speak(text):
y = text_to_speech(text)
return 16_000, y
title = "vietTTS"
description = "A vietnamese text-to-speech demo."
gr.Interface(
fn=speak,
inputs="text",
outputs="audio",
title = title,
examples = [
"Trăm năm trong cõi người ta, chữ tài chữ mệnh khéo là ghét nhau.",
"Đoạn trường tân thanh, thường được biết đến với cái tên đơn giản là Truyện Kiều, là một truyện thơ của đại thi hào Nguyễn Du",
"Lục Vân Tiên quê ở huyện Đông Thành, khôi ngô tuấn tú, tài kiêm văn võ. Nghe tin triều đình mở khoa thi, Vân Tiên từ giã thầy xuống núi đua tài."
],
description=description,
theme="default",
allow_screenshot=False,
allow_flagging="never",
).launch(debug=False)
|