transcribe-cli-0.0.1 is not a library.
transcribe-cli
transcribe-cli is a Rust command-line transcription pipeline built on Whisper and CTranslate2.
It supports:
- CPU-optimized transcription
- optional NVIDIA CUDA execution
- automatic Whisper model download into
models/ - local files or
http/httpsaudio URLs - streaming transcription modes
- model cleanup commands
Install
From a local checkout:
With CUDA support:
Usage
Features
cuda: enable CUDA support with dynamic loadingcuda-static: enable static CUDA supportcuda-dynamic-loading: alias for the dynamic CUDA pathcudnn: enable cuDNN on top of CUDA
Notes
- Whisper models are downloaded automatically on first use.
- By default models are stored in
models/next to the executable unless--models-diris set. - Whisper decoding is handled in-project through a local wrapper around CTranslate2
sys::Whisperand Hugging Facetokenizers.