Spaces:
Runtime error
Runtime error
| 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() |