├── .gitignore ├── .python-version ├── README.md ├── cli_client.py ├── requirements.txt ├── server.py ├── standalone-poc └── live-transcribe.py └── ui_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.6 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/README.md -------------------------------------------------------------------------------- /cli_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/cli_client.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyaudio 2 | faster-whisper 3 | gradio 4 | librosa 5 | tabulate 6 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/server.py -------------------------------------------------------------------------------- /standalone-poc/live-transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/standalone-poc/live-transcribe.py -------------------------------------------------------------------------------- /ui_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaborvecsei/whisper-live-transcription/HEAD/ui_client.py --------------------------------------------------------------------------------