Spaces:
Running
Running
File size: 1,937 Bytes
b740fff 828732e af86d6e 3ab0a08 af86d6e ec56fd8 af86d6e ec56fd8 3ab0a08 b740fff af86d6e 5b9aa0e 3ab0a08 9da07f8 3ab0a08 ec56fd8 3ab0a08 9da07f8 3ab0a08 |
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 49 50 51 52 53 54 55 56 |
# -*- coding: utf-8 -*-
from ttsmms import TTS
import gradio as gr
ISO_CODES = {'Tachelhit': 'shi',
'Tarifit (Latin script)': 'rif-script_latin',
'Tarifit (Arabic script)': 'rif-script_arabic',
'Taqbaylit': 'kab',
'Tamasheq': 'taq',
'Tamajaq, Tawallammat (Tifinagh script)': 'ttq-script_tifinagh'
}
mapping = {'ɣ': 'ġ',
'c': 'š',
'x': 'ḫ'
}
MODELS = {}
def tts(text, variant):
text = text.lower()
variant_code = ISO_CODES[variant]
if variant_code == 'shi':
for key, value in mapping.items():
text = text.replace(key, value)
if variant_code not in MODELS:
MODELS[variant_code] = TTS(variant_code)
model = MODELS[variant_code]
audio = model.synthesis(text)
return (audio['sampling_rate'], audio['x'])
examples = [["arraw n lhem yukr aɣ ihdumn nɣ", "Tachelhit"],
["wa tamɣart ma d ukan teskart ?", "Tachelhit"],
["ar d iṭṭar unẓar, ffuɣn d igḍaḍ, mmɣin d ijjign", "Tachelhit"],
["Egg lxir di timura, ad tafed di tiwwura.", "Tarifit (Latin script)"],
["Aqemmum iqnen ur ṯ-ttidfen izan.", "Tarifit (Latin script)"]]
description = "Text-to-speech for Tachelhit, Tarifit, Taqbaylit, Tamasheq and Tamajaq (Tawallammat)."
iface = gr.Interface(
fn=tts,
inputs=[
gr.inputs.Textbox(
label="Text",
default="Text to synthesize.",
),
gr.inputs.Dropdown(label="Variant", choices=list(ISO_CODES.keys()), default="Tachelhit")
],
outputs=gr.outputs.Audio(label="Output", type="numpy"),
examples=examples,
title="🗣️ Tamazight Text-to-Speech with MMS (Massively Multilingual Speech) 🗣️",
description=description,
allow_flagging="manual",
flagging_options=['error', 'bad-quality', 'wrong-pronounciation'],
)
iface.launch() |