-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update config * Add whisper * Update requirements.txt * Add functions to generate subtitles from whisper result * Update service * Update transcribers * Update README.md * Repair requirements.txt * Update dockerfile * Only download models on transcriber=vosk * Update whisper.generate Did that fix the silence issue? * Fix whisper silence issue * Remove print * Add advanced error handling
- Loading branch information
1 parent
30b7fa8
commit 8d3ede6
Showing
10 changed files
with
272 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
certifi==2022.6.15 | ||
certifi==2022.9.24 | ||
cffi==1.15.1 | ||
charset-normalizer==2.1.1 | ||
flake8==5.0.4 | ||
grpcio==1.47.0 | ||
grpcio-reflection==1.47.0 | ||
grpcio-tools==1.47.0 | ||
idna==3.3 | ||
mccabe==0.7.0 | ||
protobuf==3.20.1 | ||
pycodestyle==2.9.1 | ||
ffmpeg-python==0.2.0 | ||
filelock==3.8.2 | ||
future==0.18.2 | ||
grpcio==1.51.1 | ||
grpcio-reflection==1.51.1 | ||
grpcio-tools==1.51.1 | ||
huggingface-hub==0.11.1 | ||
idna==3.4 | ||
install==1.3.5 | ||
more-itertools==9.0.0 | ||
numpy==1.23.5 | ||
packaging==21.3 | ||
protobuf==4.21.10 | ||
pycparser==2.21 | ||
pyflakes==2.5.0 | ||
pyparsing==3.0.9 | ||
python-dotenv==0.21.0 | ||
PyYAML==6.0 | ||
regex==2022.10.31 | ||
requests==2.28.1 | ||
six==1.16.0 | ||
srt==3.5.2 | ||
tqdm==4.64.0 | ||
urllib3==1.26.12 | ||
tokenizers==0.13.2 | ||
torch==1.13.0 | ||
tqdm==4.64.1 | ||
transformers==4.25.1 | ||
typing_extensions==4.4.0 | ||
urllib3==1.26.13 | ||
vosk==0.3.44 | ||
websockets==10.3 | ||
websockets==10.4 | ||
whisper @ git+https://github.com/openai/whisper.git@4179ed2475cc84cba66868b516232ef1b74dacdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.