mikegarts commited on
Commit
35b2fe2
·
1 Parent(s): 9e80ea1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -24,11 +24,13 @@ import time
24
  from pytube import YouTube
25
  import torch
26
 
27
- INTRO_MSG = '''#### <p>There are many not very widely spoken languages for which it is quite hard to find learning materials, especially well dubbed videos.
28
- This tool will hopefully generate subtitles so you can watch the video of your target language with corresponding subs. At least for me this is nice tool
29
- to practice both listening and reading skills.
30
- <p>Speech Recognition is based on models from [OpenAI Whisper](https://github.com/openai/whisper)
31
- <p> This space is using c++ implementation by https://github.com/ggerganov/whisper.cpp
 
 
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"]