├── .vscode └── settings.json ├── Readme.md ├── app.py ├── go-whisper.bat ├── requirements.txt └── whisperx_custom ├── __init__.py ├── __main__.py ├── alignment.py ├── asr.py ├── assets └── mel_filters.npz ├── audio.py ├── diarize.py ├── transcribe.py ├── types.py ├── utils.py └── vad.py /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/Readme.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/app.py -------------------------------------------------------------------------------- /go-whisper.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/go-whisper.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /whisperx_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/__init__.py -------------------------------------------------------------------------------- /whisperx_custom/__main__.py: -------------------------------------------------------------------------------- 1 | from .transcribe import cli 2 | 3 | 4 | cli() 5 | -------------------------------------------------------------------------------- /whisperx_custom/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/alignment.py -------------------------------------------------------------------------------- /whisperx_custom/asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/asr.py -------------------------------------------------------------------------------- /whisperx_custom/assets/mel_filters.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/assets/mel_filters.npz -------------------------------------------------------------------------------- /whisperx_custom/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/audio.py -------------------------------------------------------------------------------- /whisperx_custom/diarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/diarize.py -------------------------------------------------------------------------------- /whisperx_custom/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/transcribe.py -------------------------------------------------------------------------------- /whisperx_custom/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/types.py -------------------------------------------------------------------------------- /whisperx_custom/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/utils.py -------------------------------------------------------------------------------- /whisperx_custom/vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dschogo/whisperx-webui/HEAD/whisperx_custom/vad.py --------------------------------------------------------------------------------