Spaces:
Paused
Paused
Aitron Emper commited on
Update tabs/extra/extra.py
Browse files- tabs/extra/extra.py +22 -22
tabs/extra/extra.py
CHANGED
|
@@ -1,22 +1,22 @@
|
|
| 1 |
-
import gradio as gr
|
| 2 |
-
|
| 3 |
-
import tabs.extra.processing.processing as processing
|
| 4 |
-
import tabs.extra.analyzer.analyzer as analyzer
|
| 5 |
-
|
| 6 |
-
from assets.i18n.i18n import I18nAuto
|
| 7 |
-
|
| 8 |
-
i18n = I18nAuto()
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
def extra_tab():
|
| 12 |
-
gr.Markdown(
|
| 13 |
-
value=i18n(
|
| 14 |
-
"This section contains some extra utilities that often may be in experimental phases."
|
| 15 |
-
)
|
| 16 |
-
)
|
| 17 |
-
|
| 18 |
-
with gr.TabItem(i18n("Processing")):
|
| 19 |
-
processing.processing()
|
| 20 |
-
|
| 21 |
-
with gr.TabItem(i18n("Audio Analyzer")):
|
| 22 |
-
analyzer.analyzer()
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
import tabs.extra.processing.processing as processing
|
| 4 |
+
import tabs.extra.analyzer.analyzer as analyzer
|
| 5 |
+
|
| 6 |
+
from assets.i18n.i18n import I18nAuto
|
| 7 |
+
|
| 8 |
+
i18n = I18nAuto()
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
def extra_tab():
|
| 12 |
+
gr.Markdown(
|
| 13 |
+
value=i18n(
|
| 14 |
+
"This section contains some extra utilities that often may be in experimental phases."
|
| 15 |
+
)
|
| 16 |
+
)
|
| 17 |
+
|
| 18 |
+
# with gr.TabItem(i18n("Processing")):
|
| 19 |
+
# processing.processing()
|
| 20 |
+
|
| 21 |
+
with gr.TabItem(i18n("Audio Analyzer")):
|
| 22 |
+
analyzer.analyzer()
|