-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Adam Klement edited this page Jul 23, 2026
·
1 revision
python -m local_whisper_transcribe.cli transcribe meeting.mp4Add Python Scripts to PATH — see Installation.
Restart terminal after winget install ffmpeg.
$env:Path += ";$env:LOCALAPPDATA\Microsoft\WinGet\Links"
ffmpeg -versionlwt also auto-detects winget ffmpeg paths.
lwt setup
lwt models download smallSymptoms: 403, gated repo, not authorized
Fix:
- Accept licenses for all 3 models — HuggingFace Diarization
- Create Read token at https://huggingface.co/settings/tokens
lwt config set diarization.hf_token hf_YOUR_TOKEN- Retry
Skip diarization:
lwt transcribe meeting.mp4 --summarizelwt install cudaOr force CPU:
lwt config set whisper.device cpuSee GPU and CUDA.
lwt ollama status
lwt ollama pull llama3.2- Use smaller model:
lwt config set whisper.model small - Install GPU libs:
lwt install cuda
Whisper runs from scratch each time. To test diarization quickly:
lwt transcribe meeting.mp4 --diarize --model smallUse large-v3 only after HF setup is verified.