LucasMendes commited on
Commit
42f98e0
1 Parent(s): f282b29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -10,6 +10,10 @@ from transformers.pipelines.audio_utils import ffmpeg_read
10
  import tempfile
11
  import os
12
 
 
 
 
 
13
  MODEL_NAME = "openai/whisper-large-v3"
14
  BATCH_SIZE = 8
15
  FILE_LIMIT_MB = 1000
@@ -149,7 +153,7 @@ yt_transcribe = gr.Interface(
149
  with demo:
150
  gr.TabbedInterface([mf_transcribe, file_transcribe, yt_transcribe], ["Microphone", "Audio file", "YouTube"])
151
 
152
- write("ola mundo")
153
 
154
  demo.launch(enable_queue=True)
155
 
 
10
  import tempfile
11
  import os
12
 
13
+ print("ola mundo1")
14
+
15
+
16
+
17
  MODEL_NAME = "openai/whisper-large-v3"
18
  BATCH_SIZE = 8
19
  FILE_LIMIT_MB = 1000
 
153
  with demo:
154
  gr.TabbedInterface([mf_transcribe, file_transcribe, yt_transcribe], ["Microphone", "Audio file", "YouTube"])
155
 
156
+ print("ola mundo3")
157
 
158
  demo.launch(enable_queue=True)
159