Spaces:
Running
Running
Update main/app/app.py
Browse files- main/app/app.py +2 -3
main/app/app.py
CHANGED
@@ -66,9 +66,8 @@ with gr.Blocks(title="Ultimate RVC Maker ⚡", theme=theme) as app:
|
|
66 |
with gr.Row():
|
67 |
clean_strength = gr.Slider(label=translations["clean_strength"], info=translations["clean_strength_info"], minimum=0, maximum=1, value=0.5, step=0.1, interactive=True, visible=cleaner.value)
|
68 |
sample_rate1 = gr.Slider(minimum=8000, maximum=96000, step=1, value=44100, label=translations["sr"], info=translations["sr_info"], interactive=True)
|
69 |
-
|
70 |
-
|
71 |
-
audio_input = gr.Audio(show_download_button=True, interactive=False, label=translations["input_audio"])
|
72 |
with gr.Column():
|
73 |
with gr.Accordion(translations["use_url"], open=False):
|
74 |
url = gr.Textbox(label=translations["url_audio"], value="", placeholder="https://www.youtube.com/...", scale=6)
|
|
|
66 |
with gr.Row():
|
67 |
clean_strength = gr.Slider(label=translations["clean_strength"], info=translations["clean_strength_info"], minimum=0, maximum=1, value=0.5, step=0.1, interactive=True, visible=cleaner.value)
|
68 |
sample_rate1 = gr.Slider(minimum=8000, maximum=96000, step=1, value=44100, label=translations["sr"], info=translations["sr_info"], interactive=True)
|
69 |
+
input = gr.File(label=translations["drop_audio"], file_types=[".wav", ".mp3", ".flac", ".ogg", ".opus", ".m4a", ".mp4", ".aac", ".alac", ".wma", ".aiff", ".webm", ".ac3"])
|
70 |
+
audio_input = gr.Audio(show_download_button=True, interactive=False, label=translations["input_audio"])
|
|
|
71 |
with gr.Column():
|
72 |
with gr.Accordion(translations["use_url"], open=False):
|
73 |
url = gr.Textbox(label=translations["url_audio"], value="", placeholder="https://www.youtube.com/...", scale=6)
|