Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1521,11 +1521,11 @@ with gr.Blocks(theme=theme) as app:
|
|
1521 |
|
1522 |
# Other RVC stuff
|
1523 |
with gr.Row():
|
1524 |
-
sid0 = gr.Dropdown(label="
|
1525 |
-
refresh_button = gr.Button("Refresh", variant="
|
1526 |
if check_for_name() != '':
|
1527 |
get_vc(sorted(names)[0])
|
1528 |
-
vc_transform0 = gr.Number(label="Pitch
|
1529 |
#clean_button = gr.Button(i18n("卸载音色省显存"), variant="primary")
|
1530 |
spk_item = gr.Slider(
|
1531 |
minimum=0,
|
@@ -1604,7 +1604,7 @@ with gr.Blocks(theme=theme) as app:
|
|
1604 |
#with gr.Row():
|
1605 |
|
1606 |
file_index1 = gr.Dropdown(
|
1607 |
-
label="
|
1608 |
choices=get_indexes(),
|
1609 |
value=get_index(),
|
1610 |
interactive=True,
|
|
|
1521 |
|
1522 |
# Other RVC stuff
|
1523 |
with gr.Row():
|
1524 |
+
sid0 = gr.Dropdown(label="Voice Select", choices=sorted(names), value=check_for_name())
|
1525 |
+
refresh_button = gr.Button("Refresh", variant="secondary")
|
1526 |
if check_for_name() != '':
|
1527 |
get_vc(sorted(names)[0])
|
1528 |
+
vc_transform0 = gr.Number(label="Pitch Shift (Semitones), Adjust the pitch of your input audio.", value=0)
|
1529 |
#clean_button = gr.Button(i18n("卸载音色省显存"), variant="primary")
|
1530 |
spk_item = gr.Slider(
|
1531 |
minimum=0,
|
|
|
1604 |
#with gr.Row():
|
1605 |
|
1606 |
file_index1 = gr.Dropdown(
|
1607 |
+
label="Choose the index file (in case it wasn't automatically found.)",
|
1608 |
choices=get_indexes(),
|
1609 |
value=get_index(),
|
1610 |
interactive=True,
|