File size: 334 Bytes
af41cc5
 
1e04ba6
af41cc5
 
1e04ba6
af41cc5
 
8ad565a
496d57a
af41cc5
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
import os
import shlex

def inference(audio, text):
    os.system("python demo_cli.py --audio_path "+audio.name+" --text "+shlex.quote(text.strip()))
    return 'demo_output_1.wav'

iface = gr.Interface(inference, inputs=[gr.inputs.Audio(type="file"),"text"], outputs=gr.outputs.Audio(type="file"))

iface.launch()