Update app.py
Browse files
app.py
CHANGED
@@ -24,11 +24,13 @@ import time
|
|
24 |
from pytube import YouTube
|
25 |
import torch
|
26 |
|
27 |
-
INTRO_MSG = '''
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
32 |
'''
|
33 |
|
34 |
whisper_models = MODELS_TO_DOWNLOAD #["medium"]#["base", "small", "medium", "large", "base.en"]
|
|
|
24 |
from pytube import YouTube
|
25 |
import torch
|
26 |
|
27 |
+
INTRO_MSG = '''
|
28 |
+
#### <p>There are many not very widely spoken languages for which it is quite hard to find learning materials,
|
29 |
+
especially well dubbed videos (target language video with target language subs).
|
30 |
+
This tool will hopefully transcribe and add subs to your videos.
|
31 |
+
At least for me this is a nice tool to practice both listening and reading skills.
|
32 |
+
<p>Speech Recognition is based on models from OpenAI Whisper - https://github.com/openai/whisper
|
33 |
+
<p> This space is using the c++ implementation by https://github.com/ggerganov/whisper.cpp
|
34 |
'''
|
35 |
|
36 |
whisper_models = MODELS_TO_DOWNLOAD #["medium"]#["base", "small", "medium", "large", "base.en"]
|