├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── demo.wav └── non-whisper.ipynb ├── setup.py ├── silence_suppresion0.png ├── silence_suppresion1.png ├── stable_whisper ├── __init__.py ├── __main__.py ├── _version.py ├── alignment.py ├── audio │ ├── __init__.py │ ├── demucs.py │ ├── dfnet.py │ ├── noisereduce.py │ ├── output.py │ └── utils.py ├── decode.py ├── default.py ├── non_whisper │ ├── __init__.py │ ├── alignment.py │ ├── refinement.py │ └── transcribe.py ├── options.py ├── quantization.py ├── result.py ├── stabilization │ ├── __init__.py │ ├── nonvad.py │ ├── silero_vad.py │ └── utils.py ├── text_output.py ├── timing.py ├── utils.py ├── video_output.py ├── whisper_compatibility.py └── whisper_word_level │ ├── __init__.py │ ├── cli.py │ ├── faster_whisper.py │ ├── hf_whisper.py │ ├── mlx_whisper.py │ └── original_whisper.py └── test ├── jfk.flac ├── test_align.py ├── test_locate.py ├── test_refine.py └── test_transcribe.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/examples/demo.wav -------------------------------------------------------------------------------- /examples/non-whisper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/examples/non-whisper.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/setup.py -------------------------------------------------------------------------------- /silence_suppresion0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/silence_suppresion0.png -------------------------------------------------------------------------------- /silence_suppresion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/silence_suppresion1.png -------------------------------------------------------------------------------- /stable_whisper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/__init__.py -------------------------------------------------------------------------------- /stable_whisper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/__main__.py -------------------------------------------------------------------------------- /stable_whisper/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.19.1" 2 | -------------------------------------------------------------------------------- /stable_whisper/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/alignment.py -------------------------------------------------------------------------------- /stable_whisper/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/__init__.py -------------------------------------------------------------------------------- /stable_whisper/audio/demucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/demucs.py -------------------------------------------------------------------------------- /stable_whisper/audio/dfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/dfnet.py -------------------------------------------------------------------------------- /stable_whisper/audio/noisereduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/noisereduce.py -------------------------------------------------------------------------------- /stable_whisper/audio/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/output.py -------------------------------------------------------------------------------- /stable_whisper/audio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/audio/utils.py -------------------------------------------------------------------------------- /stable_whisper/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/decode.py -------------------------------------------------------------------------------- /stable_whisper/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/default.py -------------------------------------------------------------------------------- /stable_whisper/non_whisper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/non_whisper/__init__.py -------------------------------------------------------------------------------- /stable_whisper/non_whisper/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/non_whisper/alignment.py -------------------------------------------------------------------------------- /stable_whisper/non_whisper/refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/non_whisper/refinement.py -------------------------------------------------------------------------------- /stable_whisper/non_whisper/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/non_whisper/transcribe.py -------------------------------------------------------------------------------- /stable_whisper/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/options.py -------------------------------------------------------------------------------- /stable_whisper/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/quantization.py -------------------------------------------------------------------------------- /stable_whisper/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/result.py -------------------------------------------------------------------------------- /stable_whisper/stabilization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/stabilization/__init__.py -------------------------------------------------------------------------------- /stable_whisper/stabilization/nonvad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/stabilization/nonvad.py -------------------------------------------------------------------------------- /stable_whisper/stabilization/silero_vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/stabilization/silero_vad.py -------------------------------------------------------------------------------- /stable_whisper/stabilization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/stabilization/utils.py -------------------------------------------------------------------------------- /stable_whisper/text_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/text_output.py -------------------------------------------------------------------------------- /stable_whisper/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/timing.py -------------------------------------------------------------------------------- /stable_whisper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/utils.py -------------------------------------------------------------------------------- /stable_whisper/video_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/video_output.py -------------------------------------------------------------------------------- /stable_whisper/whisper_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_compatibility.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/__init__.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/cli.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/faster_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/faster_whisper.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/hf_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/hf_whisper.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/mlx_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/mlx_whisper.py -------------------------------------------------------------------------------- /stable_whisper/whisper_word_level/original_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/stable_whisper/whisper_word_level/original_whisper.py -------------------------------------------------------------------------------- /test/jfk.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/test/jfk.flac -------------------------------------------------------------------------------- /test/test_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/test/test_align.py -------------------------------------------------------------------------------- /test/test_locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/test/test_locate.py -------------------------------------------------------------------------------- /test/test_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/test/test_refine.py -------------------------------------------------------------------------------- /test/test_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianfch/stable-ts/HEAD/test/test_transcribe.py --------------------------------------------------------------------------------