File size: 590 Bytes
1c55f95
212dccf
82f9906
1c55f95
212dccf
1c55f95
212dccf
85653a4
82f9906
 
 
e39c272
 
82f9906
212dccf
e04af2a
82f9906
e04af2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr
from TTS.api import TTS
import tempfile

api = TTS(model_name="voice_conversion_models/multilingual/vctk/freevc24")

def greet(source, target):
    path = tempfile.NamedTemporaryFile(prefix="bttm_", suffix=".wav").name

    print("adio", source, target, path)
    api.voice_conversion_to_file(source_wav=source, target_wav=target, file_path=path)
    print("> Done")

    return path

app = gr.Interface(fn=greet, inputs=[gr.Audio(type="filepath"), gr.Audio(type="filepath")], outputs=gr.Audio(type="filepath"))
app.queue(max_size=5000, concurrency_count=5)
app.launch()