mirror of
https://github.com/armasuissewt/scripty.git
synced 2026-08-26 10:04:37 +00:00
Read-only mirror of https://github.com/armasuissewt/scripty — armasuisse W+T. Issues & pull requests at the source.
- Python 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| rsc | ||
| samples | ||
| fw_realtime_scripty.py | ||
| fw_scripty.py | ||
| README.md | ||
| realtime_scripty.py | ||
| sripty.py | ||
scripty
scripty is a collection of AI powered speech to text prototypes based on whisper and faster-whisper. For each, there is an example for processing a audio file and processing realtime microphone input. The inference is running locally.
Installation
Windows, NO CUDA
# install ffmpeg!
pip install -U openai-whisper
pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0
pip install numpy==1.23.5
pip install faster-whisper
pip install SpeechRecognition pyaudio
Windows, With CUDA
# install ffmpeg!
pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1+cu117 --index-url https://download.pytorch.org/whl/cu117
pip install numpy==1.23.5
pip install openai-whisper
pip install faster-whisper
pip install SpeechRecognition pyaudio