mrfakename
commited on
Commit
•
a7bbb2a
1
Parent(s):
ea6f179
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ import gradio as gr
|
|
11 |
mdl = whisper.load_model("base")
|
12 |
|
13 |
def subtitle(input):
|
|
|
14 |
status = "**Starting...**"
|
15 |
yield status, gr.update()
|
16 |
gr.Info("Transcribing...")
|
|
|
11 |
mdl = whisper.load_model("base")
|
12 |
|
13 |
def subtitle(input):
|
14 |
+
input = str(input)
|
15 |
status = "**Starting...**"
|
16 |
yield status, gr.update()
|
17 |
gr.Info("Transcribing...")
|