minor update
Browse files
app.py
CHANGED
|
@@ -336,6 +336,7 @@ with gr.Blocks(theme='sudeepshouche/minimalist', title="Global Dataset Maker") a
|
|
| 336 |
gr.Image(label="Spectrogram result", show_download_button=False, scale=2)
|
| 337 |
)
|
| 338 |
with gr.TabItem("Changelog"):
|
|
|
|
| 339 |
gr.Markdown("v0.98.1 - Reverted back due to none of the new features working apart from removing SR analyzer and adding new error checks.")
|
| 340 |
gr.Markdown("v0.97a - Fixed issue with spectrogram tab if no WAV file was selected.")
|
| 341 |
gr.Markdown("v0.97 - Added new spectrogram tool in Misc Tools and removed pitch analyzer as it did not fit with the purpose of this Space.")
|
|
@@ -356,5 +357,10 @@ with gr.Blocks(theme='sudeepshouche/minimalist', title="Global Dataset Maker") a
|
|
| 356 |
gr.Markdown("v0.70 - Fixed bug if no URL was passed or if the URL was invalid.")
|
| 357 |
gr.Markdown("v0.65 - Fixed bug if user tried to split an audio file when 'output.wav' didnt exist.")
|
| 358 |
gr.Markdown("v0.60 - Initial push to Huggingface Space.")
|
| 359 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 360 |
app.launch()
|
|
|
|
| 336 |
gr.Image(label="Spectrogram result", show_download_button=False, scale=2)
|
| 337 |
)
|
| 338 |
with gr.TabItem("Changelog"):
|
| 339 |
+
gr.Markdown("v0.98.2 - Added new upcoming features tab.")
|
| 340 |
gr.Markdown("v0.98.1 - Reverted back due to none of the new features working apart from removing SR analyzer and adding new error checks.")
|
| 341 |
gr.Markdown("v0.97a - Fixed issue with spectrogram tab if no WAV file was selected.")
|
| 342 |
gr.Markdown("v0.97 - Added new spectrogram tool in Misc Tools and removed pitch analyzer as it did not fit with the purpose of this Space.")
|
|
|
|
| 357 |
gr.Markdown("v0.70 - Fixed bug if no URL was passed or if the URL was invalid.")
|
| 358 |
gr.Markdown("v0.65 - Fixed bug if user tried to split an audio file when 'output.wav' didnt exist.")
|
| 359 |
gr.Markdown("v0.60 - Initial push to Huggingface Space.")
|
| 360 |
+
with gr.TabItem("Upcoming features"):
|
| 361 |
+
gr.HTML(
|
| 362 |
+
"""
|
| 363 |
+
<a href="https://imgbb.com/"><img src="https://i.ibb.co/4Vt9K3c/image-2024-01-26-052541742.png" border="0"></a><br />
|
| 364 |
+
"""
|
| 365 |
+
)
|
| 366 |
app.launch()
|