whisper-ctranslate2
Enrichment pendingWhisper command line client compatible with original OpenAI client based on CTranslate2.
GraphCanon updated today · GitHub synced today
Trust & integrity
Full report- Maintenance
- Slowing (146d since push)
- As of today · Source: github_public_v1
- Provenance
- Not a fork · Organization account
- As of today · Source: github_public_v1
- Security (OSV)
- No criticals
- As of today · Source: osv@v1
Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.
Overview
Whisper command line client compatible with original OpenAI client based on CTranslate2.
Capability facts
- Deploy
- Self-host
Source: dockerfile:Dockerfile · Jul 11, 2026
- Docker
- Dockerfile present
Source: dockerfile:Dockerfile · Jul 11, 2026
- Languages
- python
Source: github.language · Jul 11, 2026
Categories
Tags
README
Using prebuild Docker image
You can use build docker image. First pull the image:
docker pull ghcr.io/softcatala/whisper-ctranslate2:latest
The Docker image includes the small, medium and large-v2 models.
To run it:
docker run --gpus "device=0" \
-v "$(pwd)":/srv/files/ \
-it ghcr.io/softcatala/whisper-ctranslate2:latest \
/srv/files/e2e-tests/gossos.mp3 \
--output_dir /srv/files/
Notes:
- --gpus "device=0" gives access to the GPU. If you do not have a GPU, remove this.
- "$(pwd)":/srv/files/ maps your current directory to /srv/files/ inside the container
If you always need to use a model that is not in the image, you can create a derived Docker image with the model preloaded or use Docker volumes to persist and share the model files.