Spaces:
Running
on
Zero
Running
on
Zero
File size: 547 Bytes
3f53728 a13c70d 11fdcf5 a13c70d 3f53728 a13c70d 11fdcf5 a13c70d c79aed5 a13c70d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import spaces
import gradio as gr
import torch
from TTS.api import TTS
import os
os.environ["COQUI_TOS_AGREED"] = "1"
device = "cuda"
tts = TTS("tts_models/multilingual/multi-dataset/xtts_v2").to(device)
@spaces.GPU(enable_queue=True)
def clone(text, audio):
tts.tts_to_file(text=text, speaker_wav=audio, language="en", file_path="./output.wav")
return "./output.wav"
iface = gr.Interface(fn=clone,
inputs=["text",gr.Audio(type='filepath')],
outputs=gr.Audio(type='filepath'))
iface.launch() |