Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -154,6 +154,17 @@ youtube_transcribe = gr.Interface(
|
|
154 |
)
|
155 |
|
156 |
with demo:
|
157 |
-
gr.TabbedInterface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
demo.launch()
|
|
|
154 |
)
|
155 |
|
156 |
with demo:
|
157 |
+
gr.TabbedInterface(
|
158 |
+
[
|
159 |
+
mf_transcribe,
|
160 |
+
file_transcribe,
|
161 |
+
#youtube_transcribe
|
162 |
+
],
|
163 |
+
[
|
164 |
+
"Microphone",
|
165 |
+
"Audio file",
|
166 |
+
#"Youtube Video"
|
167 |
+
]
|
168 |
+
)
|
169 |
|
170 |
demo.launch()
|