YourTTS / app.py
TheComputerMan's picture
Update app.py
72cc1dc
raw
history blame contribute delete
No virus
583 Bytes
import gradio as gr
import os
def inference(text,audio):
os.system('tts --text "'+text+'" --model_name tts_models/multilingual/multi-dataset/your_tts --speaker_wav '+audio+' --language_idx "es"')
return "tts_output.wav"
title="YourTTS"
description="## Gradio Demo for [Edresson/YourTTS](https://github.com/edresson/yourtts), to use it add your text and audio file"
examples=[['This is a test','test.wav']]
gr.Interface(inference,["text",gr.Audio(type="filepath")],gr.Audio(type="filepath"),title=title,description=description,examples=examples,cache_examples
=False).launch()