Spaces:
Sleeping
Sleeping
Next
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -631,7 +631,7 @@ def change_audio_mode(vc_audio_mode):
|
|
| 631 |
|
| 632 |
with gr.Blocks(theme=applio) as app:
|
| 633 |
gr.Markdown(
|
| 634 |
-
"# <center>
|
| 635 |
)
|
| 636 |
with gr.Row():
|
| 637 |
sid = gr.Dropdown(
|
|
@@ -657,6 +657,11 @@ with gr.Blocks(theme=applio) as app:
|
|
| 657 |
refresh_model.click(
|
| 658 |
fn=check_models, inputs=[], outputs=[sid, file_index]
|
| 659 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 660 |
clean_button.click(fn=clean, inputs=[], outputs=[sid, spk_item])
|
| 661 |
with gr.TabItem("Inference"):
|
| 662 |
selected_model = gr.Markdown(value="# <center> No model selected")
|
|
@@ -686,11 +691,6 @@ with gr.Blocks(theme=applio) as app:
|
|
| 686 |
vc_inst_preview = gr.Audio(label="Instrumental Preview", interactive=False, visible=True)
|
| 687 |
with gr.Accordion('settings', open=False):
|
| 688 |
with gr.Column():
|
| 689 |
-
vc_transform0 = gr.Number(
|
| 690 |
-
label="Transpose",
|
| 691 |
-
info='Type "12" to change from male to female convertion or Type "-12" to change female to male convertion.',
|
| 692 |
-
value=0
|
| 693 |
-
)
|
| 694 |
f0method0 = gr.Radio(
|
| 695 |
label="Pitch extraction algorithm",
|
| 696 |
info=f0method_info,
|
|
|
|
| 631 |
|
| 632 |
with gr.Blocks(theme=applio) as app:
|
| 633 |
gr.Markdown(
|
| 634 |
+
"# <center> RVC V2\n"
|
| 635 |
)
|
| 636 |
with gr.Row():
|
| 637 |
sid = gr.Dropdown(
|
|
|
|
| 657 |
refresh_model.click(
|
| 658 |
fn=check_models, inputs=[], outputs=[sid, file_index]
|
| 659 |
)
|
| 660 |
+
vc_transform0 = gr.Number(
|
| 661 |
+
label="Transpose",
|
| 662 |
+
info='Type "12" to change from male to female convertion or Type "-12" to change female to male convertion.',
|
| 663 |
+
value=0
|
| 664 |
+
)
|
| 665 |
clean_button.click(fn=clean, inputs=[], outputs=[sid, spk_item])
|
| 666 |
with gr.TabItem("Inference"):
|
| 667 |
selected_model = gr.Markdown(value="# <center> No model selected")
|
|
|
|
| 691 |
vc_inst_preview = gr.Audio(label="Instrumental Preview", interactive=False, visible=True)
|
| 692 |
with gr.Accordion('settings', open=False):
|
| 693 |
with gr.Column():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 694 |
f0method0 = gr.Radio(
|
| 695 |
label="Pitch extraction algorithm",
|
| 696 |
info=f0method_info,
|