Spaces:
Running
Running
Update main/app/app.py
Browse files- main/app/app.py +10 -10
main/app/app.py
CHANGED
@@ -78,17 +78,17 @@ with gr.Blocks(title=" Ultimate RVC Maker ⚡", theme=theme) as app:
|
|
78 |
with gr.Column():
|
79 |
input = gr.File(label=translations["drop_audio"], file_types=[".wav", ".mp3", ".flac", ".ogg", ".opus", ".m4a", ".mp4", ".aac", ".alac", ".wma", ".aiff", ".webm", ".ac3"])
|
80 |
audio_input = gr.Audio(show_download_button=True, interactive=False, label=translations["input_audio"])
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
|
93 |
with gr.Row():
|
94 |
gr.Markdown(translations["output_separator"])
|
|
|
78 |
with gr.Column():
|
79 |
input = gr.File(label=translations["drop_audio"], file_types=[".wav", ".mp3", ".flac", ".ogg", ".opus", ".m4a", ".mp4", ".aac", ".alac", ".wma", ".aiff", ".webm", ".ac3"])
|
80 |
audio_input = gr.Audio(show_download_button=True, interactive=False, label=translations["input_audio"])
|
81 |
+
with gr.Column():
|
82 |
+
with gr.Accordion(translations["use_url"], open=False):
|
83 |
+
url = gr.Textbox(label=translations["url_audio"], value="", placeholder="https://www.youtube.com/...", scale=6)
|
84 |
+
download_button = gr.Button(translations["downloads"])
|
85 |
|
86 |
+
with gr.Column():
|
87 |
+
with gr.Accordion(translations["input_output"], open=False):
|
88 |
+
format = gr.Radio(label=translations["export_format"], info=translations["export_info"], choices=["wav", "mp3", "flac", "ogg", "opus", "m4a", "mp4", "aac", "alac", "wma", "aiff", "webm", "ac3"], value="wav", interactive=True)
|
89 |
+
input_audio = gr.Dropdown(label=translations["audio_path"], value="", choices=paths_for_files, allow_custom_value=True, interactive=True)
|
90 |
+
refesh_separator = gr.Button(translations["refesh"])
|
91 |
+
output_separator = gr.Textbox(label=translations["output_folder"], value="audios", placeholder="audios", info=translations["output_folder_info"], interactive=True)
|
92 |
|
93 |
with gr.Row():
|
94 |
gr.Markdown(translations["output_separator"])
|