File size: 502 Bytes
85d3b29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3cf4ae4
 
85d3b29
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr

import tabs.extra.processing.processing as processing
import tabs.extra.analyzer.analyzer as analyzer

from assets.i18n.i18n import I18nAuto

i18n = I18nAuto()


def extra_tab():
    gr.Markdown(
        value=i18n(
            "This section contains some extra utilities that often may be in experimental phases."
        )
    )

#    with gr.TabItem(i18n("Processing")):
#        processing.processing()

    with gr.TabItem(i18n("Audio Analyzer")):
        analyzer.analyzer()