kevinwang676
commited on
Commit
•
59eba44
1
Parent(s):
293ae59
Update app.py
Browse files
app.py
CHANGED
@@ -551,7 +551,7 @@ while run_server:
|
|
551 |
|
552 |
with gr.Tab("🎙️ - Clone Voice"):
|
553 |
with gr.Row():
|
554 |
-
input_audio_filename = gr.Audio(label="Input audio.wav", type="filepath")
|
555 |
#transcription_text = gr.Textbox(label="Transcription Text", lines=1, placeholder="Enter Text of your Audio Sample here...")
|
556 |
with gr.Row():
|
557 |
with gr.Column():
|
@@ -633,7 +633,7 @@ while run_server:
|
|
633 |
|
634 |
with gr.Tab("🔮 - Voice Conversion"):
|
635 |
with gr.Row():
|
636 |
-
swap_audio_filename = gr.Audio(label="Input audio.wav to swap voice", type="filepath")
|
637 |
with gr.Row():
|
638 |
with gr.Column():
|
639 |
swap_tokenizer_lang = gr.Dropdown(tokenizer_language_list, label="Base Language Tokenizer", value=tokenizer_language_list[1])
|
|
|
551 |
|
552 |
with gr.Tab("🎙️ - Clone Voice"):
|
553 |
with gr.Row():
|
554 |
+
input_audio_filename = gr.Audio(label="Input audio.wav", source="upload", type="filepath")
|
555 |
#transcription_text = gr.Textbox(label="Transcription Text", lines=1, placeholder="Enter Text of your Audio Sample here...")
|
556 |
with gr.Row():
|
557 |
with gr.Column():
|
|
|
633 |
|
634 |
with gr.Tab("🔮 - Voice Conversion"):
|
635 |
with gr.Row():
|
636 |
+
swap_audio_filename = gr.Audio(label="Input audio.wav to swap voice", source="upload", type="filepath")
|
637 |
with gr.Row():
|
638 |
with gr.Column():
|
639 |
swap_tokenizer_lang = gr.Dropdown(tokenizer_language_list, label="Base Language Tokenizer", value=tokenizer_language_list[1])
|