Update app.py
Browse files
app.py
CHANGED
@@ -45,14 +45,14 @@ css="""
|
|
45 |
title="""
|
46 |
<div style="text-align: center;">
|
47 |
<h1>Voice Cloning for Bark Text-to-Audio</h1>
|
48 |
-
<p>This demo is an adaptation of the Serp-AI attempts to enable voice cloning using Bark</p>
|
49 |
</div>
|
50 |
"""
|
51 |
|
52 |
with gr.Blocks(css=css) as demo:
|
53 |
with gr.Column(elem_id="col-container"):
|
54 |
gr.HTML(title)
|
55 |
-
audio_in = gr.Audio(label="Voice in to clone", source="microphone", type="filepath")
|
56 |
transcript = gr.Textbox(label="Manual transcription of your audio")
|
57 |
name = gr.Textbox(label="Name your voice")
|
58 |
|
|
|
45 |
title="""
|
46 |
<div style="text-align: center;">
|
47 |
<h1>Voice Cloning for Bark Text-to-Audio</h1>
|
48 |
+
<p>This demo is an adaptation of the <a href="https://github.com/serp-ai/bark-with-voice-clone" target="_blank">Serp-AI</p> attempts to enable voice cloning using Bark</p>
|
49 |
</div>
|
50 |
"""
|
51 |
|
52 |
with gr.Blocks(css=css) as demo:
|
53 |
with gr.Column(elem_id="col-container"):
|
54 |
gr.HTML(title)
|
55 |
+
audio_in = gr.Audio(label="Voice in to clone", info="the audio you want to clone (will get truncated so 5-10 seconds is probably fine, existing samples that I checked are around 7 seconds)", source="microphone", type="filepath")
|
56 |
transcript = gr.Textbox(label="Manual transcription of your audio")
|
57 |
name = gr.Textbox(label="Name your voice")
|
58 |
|