Read-only mirror of https://github.com/armasuissewt/scripty — armasuisse W+T. Issues & pull requests at the source.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Adrian Schneider 770ba65134 Header
2024-08-19 13:26:54 +02:00
rsc Example execution 2024-08-12 11:38:10 +02:00
samples Using faster-whisper on file 2024-08-12 11:03:23 +02:00
fw_realtime_scripty.py Header 2024-08-19 13:26:54 +02:00
fw_scripty.py Using faster-whisper on file 2024-08-12 11:03:23 +02:00
README.md Update README.md 2024-08-15 09:47:04 +02:00
realtime_scripty.py some minor adaptions 2024-08-12 11:14:02 +02:00
sripty.py Using faster-whisper on file 2024-08-12 11:03:23 +02:00

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.

smoothing

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