├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── benchmark ├── benchmark.m4a ├── evaluate_yt_commons.py ├── memory_benchmark.py ├── normalizer.json ├── requirements.benchmark.txt ├── speed_benchmark.py ├── utils.py └── wer_benchmark.py ├── docker ├── Dockerfile ├── infer.py └── jfk.flac ├── faster_whisper ├── __init__.py ├── assets │ ├── __init__.py │ ├── silero_decoder_v5.onnx │ └── silero_encoder_v5.onnx ├── audio.py ├── feature_extractor.py ├── tokenizer.py ├── transcribe.py ├── utils.py ├── vad.py └── version.py ├── requirements.conversion.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── conftest.py ├── data ├── hotwords.mp3 ├── jfk.flac ├── multilingual.mp3 ├── physicsworks.wav └── stereo_diarization.wav ├── test_tokenizer.py ├── test_transcribe.py └── test_utils.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/benchmark.m4a -------------------------------------------------------------------------------- /benchmark/evaluate_yt_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/evaluate_yt_commons.py -------------------------------------------------------------------------------- /benchmark/memory_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/memory_benchmark.py -------------------------------------------------------------------------------- /benchmark/normalizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/normalizer.json -------------------------------------------------------------------------------- /benchmark/requirements.benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/requirements.benchmark.txt -------------------------------------------------------------------------------- /benchmark/speed_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/speed_benchmark.py -------------------------------------------------------------------------------- /benchmark/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/utils.py -------------------------------------------------------------------------------- /benchmark/wer_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/benchmark/wer_benchmark.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/docker/infer.py -------------------------------------------------------------------------------- /docker/jfk.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/docker/jfk.flac -------------------------------------------------------------------------------- /faster_whisper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/__init__.py -------------------------------------------------------------------------------- /faster_whisper/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /faster_whisper/assets/silero_decoder_v5.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/assets/silero_decoder_v5.onnx -------------------------------------------------------------------------------- /faster_whisper/assets/silero_encoder_v5.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/assets/silero_encoder_v5.onnx -------------------------------------------------------------------------------- /faster_whisper/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/audio.py -------------------------------------------------------------------------------- /faster_whisper/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/feature_extractor.py -------------------------------------------------------------------------------- /faster_whisper/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/tokenizer.py -------------------------------------------------------------------------------- /faster_whisper/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/transcribe.py -------------------------------------------------------------------------------- /faster_whisper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/utils.py -------------------------------------------------------------------------------- /faster_whisper/vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/vad.py -------------------------------------------------------------------------------- /faster_whisper/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/faster_whisper/version.py -------------------------------------------------------------------------------- /requirements.conversion.txt: -------------------------------------------------------------------------------- 1 | transformers[torch]>=4.23 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/hotwords.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/data/hotwords.mp3 -------------------------------------------------------------------------------- /tests/data/jfk.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/data/jfk.flac -------------------------------------------------------------------------------- /tests/data/multilingual.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/data/multilingual.mp3 -------------------------------------------------------------------------------- /tests/data/physicsworks.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/data/physicsworks.wav -------------------------------------------------------------------------------- /tests/data/stereo_diarization.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/data/stereo_diarization.wav -------------------------------------------------------------------------------- /tests/test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/test_tokenizer.py -------------------------------------------------------------------------------- /tests/test_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/test_transcribe.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SesameAILabs/faster-whisper-plus/HEAD/tests/test_utils.py --------------------------------------------------------------------------------