File size: 575 Bytes
2f5f13b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
import sys
import gradio as gr

now_dir = os.getcwd()
sys.path.append(now_dir)

from tabs.extra.sections.processing import processing_tab
from tabs.extra.sections.analyzer import analyzer_tab
from tabs.extra.sections.f0_extractor import f0_extractor_tab

from assets.i18n.i18n import I18nAuto

i18n = I18nAuto()


def extra_tab():
    with gr.TabItem(i18n("Model information")):
        processing_tab()

    with gr.TabItem(i18n("F0 Curve")):
        f0_extractor_tab()

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