Commit
·
5bdd729
1
Parent(s):
c353027
Update app.py
Browse files
app.py
CHANGED
@@ -31,10 +31,10 @@ def get_summary(article):
|
|
31 |
return b
|
32 |
|
33 |
with gr.Blocks() as demo:
|
34 |
-
gr.Markdown("<h1><center>Free Fast YouTube URL Video
|
35 |
gr.Markdown("<center>Enter the link of any YouTube video to generate a text transcript of the video and then create a summary of the video transcript.</center>")
|
36 |
gr.Markdown("<center><b>'Whisper is a neural net that approaches human level robustness and accuracy on English speech recognition.'</b></center>")
|
37 |
-
gr.Markdown("<center>
|
38 |
|
39 |
input_text_url = gr.Textbox(placeholder='Youtube video URL', label='URL')
|
40 |
result_button_transcribe = gr.Button('1. Transcribe')
|
|
|
31 |
return b
|
32 |
|
33 |
with gr.Blocks() as demo:
|
34 |
+
gr.Markdown("<h1><center>Free Fast YouTube URL Video-to-Text using <a href=https://openai.com/blog/whisper/ target=_blank>OpenAI's Whisper</a> Model</center></h1>")
|
35 |
gr.Markdown("<center>Enter the link of any YouTube video to generate a text transcript of the video and then create a summary of the video transcript.</center>")
|
36 |
gr.Markdown("<center><b>'Whisper is a neural net that approaches human level robustness and accuracy on English speech recognition.'</b></center>")
|
37 |
+
gr.Markdown("<center>Transcription takes 5-10 seconds per minute of the video. #patience</center>")
|
38 |
|
39 |
input_text_url = gr.Textbox(placeholder='Youtube video URL', label='URL')
|
40 |
result_button_transcribe = gr.Button('1. Transcribe')
|