Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,11 +53,6 @@ def _return_yt_html_embed(yt_url):
|
|
53 |
)
|
54 |
return HTML_str
|
55 |
|
56 |
-
with open('outt.txt', 'a+') as sw:
|
57 |
-
sw.writelines(text)
|
58 |
-
|
59 |
-
return [text,"outt.txt"]
|
60 |
-
|
61 |
|
62 |
|
63 |
def yt_transcribe(yt_url, task):
|
@@ -72,6 +67,11 @@ def yt_transcribe(yt_url, task):
|
|
72 |
|
73 |
return html_embed_str, text
|
74 |
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
demo = gr.Blocks()
|
77 |
output_2 = gr.File(label="Download")
|
|
|
53 |
)
|
54 |
return HTML_str
|
55 |
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
|
58 |
def yt_transcribe(yt_url, task):
|
|
|
67 |
|
68 |
return html_embed_str, text
|
69 |
|
70 |
+
with open('outt.txt', 'a+') as sw:
|
71 |
+
sw.writelines(text)
|
72 |
+
|
73 |
+
return [text,"outt.txt"]
|
74 |
+
|
75 |
|
76 |
demo = gr.Blocks()
|
77 |
output_2 = gr.File(label="Download")
|