import gradio as gr import os import shlex os.system('wget https://www.dropbox.com/s/luro5o8kjotkn70/synpretrained.pt') os.system('wget https://www.dropbox.com/s/dv0ymnlqillecfw/encpretrained.pt') os.system('wget https://www.dropbox.com/s/aiym2qfv7087bsc/vocpretrained.pt') os.system('ls') def inference(audio, text): os.system("python demo_cli.py --no_sound --cpu --audio_path "+audio.name+" --text "+shlex.quote(text.strip())) return 'demo_output_1.wav' title = "Real-Time-Voice-Cloning" description = "Gradio demo for Real-Time-Voice-Cloning: Clone a voice in 5 seconds to generate arbitrary speech in real-time. To use it, simply upload your audio, or click one of the examples to load them. Read more at the links below." article = "

Real-Time Voice Cloning | Github Repo

" examples=[['test.wav',"This is real time voice cloning on huggingface spaces"]] gr.Interface(inference, inputs=[gr.inputs.Audio(type="file"),"text"], outputs=gr.outputs.Audio(type="file"),enable_queue=True,title=title,description=description,article=article, examples=examples).launch()