Spaces:
Runtime error
Runtime error
print text split
Browse files
app.py
CHANGED
@@ -36,7 +36,8 @@ def transcribe(microphone, file_upload):
|
|
36 |
file = microphone if microphone is not None else file_upload
|
37 |
|
38 |
text = pipe(file)["text"]
|
39 |
-
|
|
|
40 |
|
41 |
|
42 |
def _return_yt_html_embed(yt_url):
|
|
|
36 |
file = microphone if microphone is not None else file_upload
|
37 |
|
38 |
text = pipe(file)["text"]
|
39 |
+
print(str(text).split())
|
40 |
+
return str(text).split()
|
41 |
|
42 |
|
43 |
def _return_yt_html_embed(yt_url):
|