Update app.py
Browse files
app.py
CHANGED
@@ -158,6 +158,7 @@ with gr.Blocks(theme="Blane187/fuchsia", title="π΅ UVR5 MDX π΅") as app:
|
|
158 |
choices = mdxnet_models,
|
159 |
interactive = True
|
160 |
)
|
|
|
161 |
mdxnet_output_format = gr.Dropdown(
|
162 |
label = "Select the Output Format",
|
163 |
choices = output_format,
|
@@ -173,6 +174,7 @@ with gr.Blocks(theme="Blane187/fuchsia", title="π΅ UVR5 MDX π΅") as app:
|
|
173 |
value = 256,
|
174 |
interactive = True
|
175 |
)
|
|
|
176 |
mdxnet_overlap = gr.Dropdown(
|
177 |
label = "Overlap",
|
178 |
choices = mdxnet_overlap_values,
|
@@ -236,13 +238,13 @@ with gr.Blocks(theme="Blane187/fuchsia", title="π΅ UVR5 MDX π΅") as app:
|
|
236 |
mdxnet_stem1 = gr.Audio(
|
237 |
show_download_button = True,
|
238 |
interactive = False,
|
239 |
-
label = "
|
240 |
type = "filepath"
|
241 |
)
|
242 |
mdxnet_stem2 = gr.Audio(
|
243 |
show_download_button = True,
|
244 |
interactive = False,
|
245 |
-
label = "
|
246 |
type = "filepath"
|
247 |
)
|
248 |
|
@@ -266,5 +268,5 @@ with gr.Blocks(theme="Blane187/fuchsia", title="π΅ UVR5 MDX π΅") as app:
|
|
266 |
"""
|
267 |
)
|
268 |
|
269 |
-
|
270 |
-
app.launch()
|
|
|
158 |
choices = mdxnet_models,
|
159 |
interactive = True
|
160 |
)
|
161 |
+
with gr.Row():
|
162 |
mdxnet_output_format = gr.Dropdown(
|
163 |
label = "Select the Output Format",
|
164 |
choices = output_format,
|
|
|
174 |
value = 256,
|
175 |
interactive = True
|
176 |
)
|
177 |
+
with gr.Row():
|
178 |
mdxnet_overlap = gr.Dropdown(
|
179 |
label = "Overlap",
|
180 |
choices = mdxnet_overlap_values,
|
|
|
238 |
mdxnet_stem1 = gr.Audio(
|
239 |
show_download_button = True,
|
240 |
interactive = False,
|
241 |
+
label = "instrumental",
|
242 |
type = "filepath"
|
243 |
)
|
244 |
mdxnet_stem2 = gr.Audio(
|
245 |
show_download_button = True,
|
246 |
interactive = False,
|
247 |
+
label = "vocal",
|
248 |
type = "filepath"
|
249 |
)
|
250 |
|
|
|
268 |
"""
|
269 |
)
|
270 |
|
271 |
+
|
272 |
+
app.launch(share=True, debug=True)
|