Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def populate_metadata(link):
|
|
21 |
yt = YouTube(link)
|
22 |
return yt.thumbnail_url, yt.title
|
23 |
|
24 |
-
title="Youtube Whisperer
|
25 |
description="Speech to text transcription of Youtube videos using OpenAI's Whisper"
|
26 |
block = gr.Blocks()
|
27 |
|
@@ -59,4 +59,4 @@ with block:
|
|
59 |
link.change(populate_metadata, inputs=[link], outputs=[img, title])
|
60 |
sz.change(change_model, inputs=[sz], outputs=[])
|
61 |
|
62 |
-
block.launch(
|
|
|
21 |
yt = YouTube(link)
|
22 |
return yt.thumbnail_url, yt.title
|
23 |
|
24 |
+
title="Youtube Whisperer"
|
25 |
description="Speech to text transcription of Youtube videos using OpenAI's Whisper"
|
26 |
block = gr.Blocks()
|
27 |
|
|
|
59 |
link.change(populate_metadata, inputs=[link], outputs=[img, title])
|
60 |
sz.change(change_model, inputs=[sz], outputs=[])
|
61 |
|
62 |
+
block.launch(debug=True)
|