ayymen commited on
Commit
036a50f
1 Parent(s): 7212052

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -154,6 +154,17 @@ youtube_transcribe = gr.Interface(
154
  )
155
 
156
  with demo:
157
- gr.TabbedInterface([mf_transcribe, file_transcribe, youtube_transcribe], ["Microphone", "Audio file", "Youtube Video"])
 
 
 
 
 
 
 
 
 
 
 
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()