Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,6 +53,12 @@ def _return_yt_html_embed(yt_url):
|
|
53 |
)
|
54 |
return HTML_str
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
def yt_transcribe(yt_url, task):
|
58 |
yt = pt.YouTube(yt_url)
|
@@ -84,8 +90,7 @@ mf_transcribe = gr.Interface(
|
|
84 |
description= description,
|
85 |
allow_flagging="never",
|
86 |
)
|
87 |
-
|
88 |
-
description = """This application displays transcribed text for given audio input <img src="https://i.ibb.co/J5DscKw/GVP-Womens.jpg" width=100px>"""
|
89 |
yt_transcribe = gr.Interface(
|
90 |
fn=yt_transcribe,
|
91 |
inputs=[
|
|
|
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):
|
64 |
yt = pt.YouTube(yt_url)
|
|
|
90 |
description= description,
|
91 |
allow_flagging="never",
|
92 |
)
|
93 |
+
|
|
|
94 |
yt_transcribe = gr.Interface(
|
95 |
fn=yt_transcribe,
|
96 |
inputs=[
|