File size: 960 Bytes
b740fff
 
 
 
538fed7
b740fff
 
 
 
 
538fed7
b740fff
1f3ffd3
b740fff
 
538fed7
c4ca71a
b740fff
538fed7
b740fff
 
538fed7
b740fff
 
 
 
 
 
 
 
 
 
 
 
 
 
538fed7
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
# -*- coding: utf-8 -*-
from ttsmms import TTS
import gradio as gr

tts = TTS("shi")

def generate_voice(text):
    audio = tts.synthesis(text)
    return (audio['sampling_rate'], audio['x'])

with gr.Blocks(title="Tachelhit Text to Speech with MMS") as blocks:

    gr.Markdown('# Tachelhit Text to Speech - MMS')
    gr.Markdown('MMS: Scaling Speech Technology to 1000+ languages by Meta AI')

    input_text = gr.Textbox(label="Input Text", lines=3)
    examples = gr.Examples(examples=["ġ-iḍ-an ġ-ilul-umsiggel, illas lḥal s-umdlu isemmiḍn.", "wala manis a-ttidun?"], inputs=[input_text])

    run_button = gr.Button(value="Run")

    out_audio = gr.Audio(
        label="Output Audio",
        type="numpy", 
    )

    inputs = [input_text]
    outputs = [out_audio]

    run_button.click(
        fn=generate_voice,
        inputs=inputs,
        outputs=outputs,
        queue=True,
    )


blocks.queue(concurrency_count=1).launch(debug=True)