Update app.py
Browse files
app.py
CHANGED
|
@@ -146,7 +146,7 @@ def zip_to_many(zip_upload):
|
|
| 146 |
os.rmdir(temp_dir)
|
| 147 |
return "Done.", output_path
|
| 148 |
|
| 149 |
-
with gr.Blocks(theme='
|
| 150 |
gr.HTML(
|
| 151 |
"<h1> Welcome to the Cafeteria (formally GDMGS)!</h1>"
|
| 152 |
)
|
|
@@ -271,7 +271,20 @@ with gr.Blocks(theme='bethecloud/storj_theme', title="Global Dataset Maker") as
|
|
| 271 |
"42 - MVSep MultiSpeaker (MDX23C)",
|
| 272 |
"43 - MVSEP Multichannel BS (vocals, inst)",
|
| 273 |
"44 - MVSep Drums (drums, other)",
|
| 274 |
-
"45 - Bandit v2 (speech, music, effects)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 275 |
],
|
| 276 |
max_choices=1,
|
| 277 |
value="45 - Bandit v2 (speech, music, effects)",
|
|
@@ -316,6 +329,7 @@ with gr.Blocks(theme='bethecloud/storj_theme', title="Global Dataset Maker") as
|
|
| 316 |
)
|
| 317 |
|
| 318 |
with gr.TabItem("Changelog"):
|
|
|
|
| 319 |
gr.Markdown("v1.2 - Added an option (in mp4 to mp3/wav converter) to have the output file be a random filename.")
|
| 320 |
gr.Markdown("v1.1 - Added new tool: Convert many audio files to one file.")
|
| 321 |
gr.Markdown("v1 - Not the most exciting v1 release. **Removed yt functions as they are no longer working.**")
|
|
|
|
| 146 |
os.rmdir(temp_dir)
|
| 147 |
return "Done.", output_path
|
| 148 |
|
| 149 |
+
with gr.Blocks(theme='ParityError/Interstellar', title="Global Dataset Maker") as app:
|
| 150 |
gr.HTML(
|
| 151 |
"<h1> Welcome to the Cafeteria (formally GDMGS)!</h1>"
|
| 152 |
)
|
|
|
|
| 271 |
"42 - MVSep MultiSpeaker (MDX23C)",
|
| 272 |
"43 - MVSEP Multichannel BS (vocals, inst)",
|
| 273 |
"44 - MVSep Drums (drums, other)",
|
| 274 |
+
"45 - Bandit v2 (speech, music, effects)",
|
| 275 |
+
"46 - SCNet (vocals, instrumental)",
|
| 276 |
+
"47 - DeNoise by aufr33",
|
| 277 |
+
"48 - Melband Roformer (vocals, intrumental)",
|
| 278 |
+
"49 - MelBand Karaoke by viperx and aufr33 (lead/back vocals)",
|
| 279 |
+
"50 - Aspiration (by Sucial)",
|
| 280 |
+
"51 - Apollo Enhancers (by JusperLee and Lew)",
|
| 281 |
+
"52 - MVSep Strings (strings, other)",
|
| 282 |
+
"53 - Medley Vox (multi-singer separation)",
|
| 283 |
+
"54 - MVSep Wind (wind, other)",
|
| 284 |
+
"55 - Phantom Centre extraction (by wesleyr36)",
|
| 285 |
+
"56 - MVSep DnR v3 (speech, music, sfx)",
|
| 286 |
+
"57 - MVSep Male/Female separation",
|
| 287 |
+
"58 - MVSep Organ (organ, other)"
|
| 288 |
],
|
| 289 |
max_choices=1,
|
| 290 |
value="45 - Bandit v2 (speech, music, effects)",
|
|
|
|
| 329 |
)
|
| 330 |
|
| 331 |
with gr.TabItem("Changelog"):
|
| 332 |
+
gr.Markdown("v1.3 - Added more MVSep models.")
|
| 333 |
gr.Markdown("v1.2 - Added an option (in mp4 to mp3/wav converter) to have the output file be a random filename.")
|
| 334 |
gr.Markdown("v1.1 - Added new tool: Convert many audio files to one file.")
|
| 335 |
gr.Markdown("v1 - Not the most exciting v1 release. **Removed yt functions as they are no longer working.**")
|