File size: 1,246 Bytes
f94a020
58b2f84
f94a020
 
 
3251e7e
58b2f84
f94a020
3251e7e
d3ac099
ca8f9fa
 
 
 
 
 
 
3251e7e
 
 
 
 
88a4e66
f99e3f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import gradio as gr
import torch
import os
import zipfile
import requests
from TTS.api import TTS
os.environ["COQUI_TOS_AGREED"] = "1"
device = "cuda"
tts = TTS("tts_models/multilingual/multi-dataset/xtts_v2").to(device)

def clone(text, url, language):
    response = requests.get(url)
    with open("temp.zip", "wb") as f:
        f.write(response.content)
    with zipfile.ZipFile("temp.zip", "r") as zip_ref:
        zip_ref.extractall()
    audio_file = [f for f in os.listdir(".") if f.endswith(".wav")][0]
    tts.tts_to_file(text=text, speaker_wav=audio_file, language=language, file_path="./output.wav")
    os.remove(audio_file)
    os.remove("temp.zip")
    return "./output.wav"

iface = gr.Interface(fn=clone, inputs=["text", gr.components.Text(label="URL"), gr.Dropdown(choices=["en", "es", "fr", "de", "it", "pt", "pl", "tr", "ru", "nl", "cs", "ar", "zh-cn", "ja", "hu", "ko", "hi"], label="Language")], outputs=gr.Audio(type='filepath'), title='Voice Clone', description=""" by [Angetyde](https://youtube.com/@Angetyde?si=7nusP31nTumIkPTF) and [Tony Assi](https://www.tonyassi.com/ ) use this colab with caution <3. """, theme=gr.themes.Base(primary_hue="teal", secondary_hue="teal", neutral_hue="slate"))
iface.launch(share=True)